instiki/vendor/rails/activerecord/test/cases/deprecated_finder_test.rb

31 lines
978 B
Ruby
Raw Normal View History

require "cases/helper"
require 'models/entrant'
2007-01-22 14:43:50 +01:00
class DeprecatedFinderTest < ActiveRecord::TestCase
fixtures :entrants
2007-01-22 14:43:50 +01:00
def test_deprecated_find_all_was_removed
assert_raise(NoMethodError) { Entrant.find_all }
2007-01-22 14:43:50 +01:00
end
def test_deprecated_find_first_was_removed
assert_raise(NoMethodError) { Entrant.find_first }
2007-01-22 14:43:50 +01:00
end
def test_deprecated_find_on_conditions_was_removed
assert_raise(NoMethodError) { Entrant.find_on_conditions }
2007-01-22 14:43:50 +01:00
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]))
2007-01-22 14:43:50 +01:00
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