From 9991f0f15a80025188182b6f73267b7dfb1f96c2 Mon Sep 17 00:00:00 2001 From: Daniel Schierbeck Date: Fri, 8 Jul 2011 15:59:46 +0200 Subject: Refactor PostgreSQLAdapter a bit Move the private method #extract_schema_and_table into a separate Utils module so that it can be tested without resorting to #send. --- activerecord/test/cases/adapters/postgresql/schema_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/test/cases') diff --git a/activerecord/test/cases/adapters/postgresql/schema_test.rb b/activerecord/test/cases/adapters/postgresql/schema_test.rb index 27e7b1a1c3..3a7f1badf0 100644 --- a/activerecord/test/cases/adapters/postgresql/schema_test.rb +++ b/activerecord/test/cases/adapters/postgresql/schema_test.rb @@ -229,8 +229,8 @@ class SchemaTest < ActiveRecord::TestCase %("schema"."table_name") => %w{schema table_name}, %("even spaces".table) => ['even spaces','table'], %(schema."table.name") => ['schema', 'table.name'] - }.each do |given,expect| - assert_equal expect, @connection.send(:extract_schema_and_table, given) + }.each do |given, expect| + assert_equal expect, ActiveRecord::ConnectionAdapters::PostgreSQLAdapter::Utils.extract_schema_and_table(given) end end -- cgit v1.2.3