aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/deprecated_finder_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/deprecated_finder_test.rb')
-rwxr-xr-xactiverecord/test/cases/deprecated_finder_test.rb30
1 files changed, 30 insertions, 0 deletions
diff --git a/activerecord/test/cases/deprecated_finder_test.rb b/activerecord/test/cases/deprecated_finder_test.rb
new file mode 100755
index 0000000000..9c5a74cf02
--- /dev/null
+++ b/activerecord/test/cases/deprecated_finder_test.rb
@@ -0,0 +1,30 @@
+require 'abstract_unit'
+require 'fixtures/entrant'
+
+class DeprecatedFinderTest < ActiveSupport::TestCase
+ fixtures :entrants
+
+ def test_deprecated_find_all_was_removed
+ assert_raise(NoMethodError) { Entrant.find_all }
+ end
+
+ def test_deprecated_find_first_was_removed
+ assert_raise(NoMethodError) { Entrant.find_first }
+ end
+
+ def test_deprecated_find_on_conditions_was_removed
+ assert_raise(NoMethodError) { Entrant.find_on_conditions }
+ end
+
+ def test_count
+ assert_equal(0, Entrant.count(:conditions => "id > 3"))
+ assert_equal(1, Entrant.count(:conditions => ["id > ?", 2]))
+ assert_equal(2, Entrant.count(:conditions => ["id > ?", 1]))
+ end
+
+ def test_count_by_sql
+ assert_equal(0, Entrant.count_by_sql("SELECT COUNT(*) FROM entrants WHERE id > 3"))
+ assert_equal(1, Entrant.count_by_sql(["SELECT COUNT(*) FROM entrants WHERE id > ?", 2]))
+ assert_equal(2, Entrant.count_by_sql(["SELECT COUNT(*) FROM entrants WHERE id > ?", 1]))
+ end
+end