From 18b9595814057095084f508b6837ad3c7331079f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Mon, 10 Mar 2014 10:20:27 -0300 Subject: Do proper adapter check --- activerecord/test/cases/finder_test.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/test/cases') diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb index 78c4e02434..0ab3830323 100644 --- a/activerecord/test/cases/finder_test.rb +++ b/activerecord/test/cases/finder_test.rb @@ -64,7 +64,7 @@ class FinderTest < ActiveRecord::TestCase def test_exists_fails_when_parameter_has_invalid_type begin assert_equal false, Topic.exists?(("9"*53).to_i) # number that's bigger than int - flunk if defined? ActiveRecord::ConnectionAdapters::PostgreSQLAdapter and Topic.connection.is_a? ActiveRecord::ConnectionAdapters::PostgreSQLAdapter # PostgreSQL does raise here + flunk if current_adapter?(:PostgreSQLAdapter) # PostgreSQL does raise here rescue ActiveRecord::StatementInvalid # PostgreSQL complains that it can't coerce a numeric that's bigger than int into int rescue Exception @@ -73,7 +73,7 @@ class FinderTest < ActiveRecord::TestCase begin assert_equal false, Topic.exists?("foo") - flunk if defined? ActiveRecord::ConnectionAdapters::PostgreSQLAdapter and Topic.connection.is_a? ActiveRecord::ConnectionAdapters::PostgreSQLAdapter # PostgreSQL does raise here + flunk if current_adapter?(:PostgreSQLAdapter) # PostgreSQL does raise here rescue ActiveRecord::StatementInvalid # PostgreSQL complains about string comparison with integer field rescue Exception -- cgit v1.2.3