fisting test organization

This commit is contained in:
Aaron Patterson 2010-09-29 09:54:22 -07:00
parent 995ad3b378
commit 2cc4b7f297
2 changed files with 50 additions and 52 deletions

@ -2,18 +2,67 @@
module ActiveRecord
class DynamicFinderMatchTest < ActiveRecord::TestCase
def test_find_or_create_by
match = DynamicFinderMatch.match("find_or_create_by_age_and_sex_and_location")
assert_not_nil match
assert !match.finder?
assert match.instantiator?
assert_equal :first, match.finder
assert_equal :create, match.instantiator
assert_equal %w(age sex location), match.attribute_names
end
def test_find_or_initialize_by
match = DynamicFinderMatch.match("find_or_initialize_by_age_and_sex_and_location")
assert_not_nil match
assert !match.finder?
assert match.instantiator?
assert_equal :first, match.finder
assert_equal :new, match.instantiator
assert_equal %w(age sex location), match.attribute_names
end
def test_find_no_match
assert_nil DynamicFinderMatch.match("not_a_finder")
end
def find_by_bang
match = DynamicFinderMatch.match("find_by_age_and_sex_and_location!")
assert_not_nil match
assert match.finder?
assert match.bang?
assert_equal :first, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def test_find_by
match = DynamicFinderMatch.match("find_by_age_and_sex_and_location")
assert_not_nil match
assert match.finder?
assert_equal :first, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def test_find_by_with_symbol
m = DynamicFinderMatch.match(:find_by_foo)
assert_equal :first, m.finder
assert_equal %w{ foo }, m.attribute_names
end
def test_find_all_by
def test_find_all_by_with_symbol
m = DynamicFinderMatch.match(:find_all_by_foo)
assert_equal :all, m.finder
assert_equal %w{ foo }, m.attribute_names
end
def test_find_all_by
match = DynamicFinderMatch.match("find_all_by_age_and_sex_and_location")
assert_not_nil match
assert match.finder?
assert_equal :all, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def test_find_last_by
m = DynamicFinderMatch.match(:find_last_by_foo)
assert_equal :last, m.finder

@ -11,57 +11,6 @@
require 'models/developer'
require 'models/customer'
class DynamicFinderMatchTest < ActiveRecord::TestCase
def test_find_no_match
assert_nil ActiveRecord::DynamicFinderMatch.match("not_a_finder")
end
def test_find_by
match = ActiveRecord::DynamicFinderMatch.match("find_by_age_and_sex_and_location")
assert_not_nil match
assert match.finder?
assert_equal :first, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def find_by_bang
match = ActiveRecord::DynamicFinderMatch.match("find_by_age_and_sex_and_location!")
assert_not_nil match
assert match.finder?
assert match.bang?
assert_equal :first, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def test_find_all_by
match = ActiveRecord::DynamicFinderMatch.match("find_all_by_age_and_sex_and_location")
assert_not_nil match
assert match.finder?
assert_equal :all, match.finder
assert_equal %w(age sex location), match.attribute_names
end
def test_find_or_initialize_by
match = ActiveRecord::DynamicFinderMatch.match("find_or_initialize_by_age_and_sex_and_location")
assert_not_nil match
assert !match.finder?
assert match.instantiator?
assert_equal :first, match.finder
assert_equal :new, match.instantiator
assert_equal %w(age sex location), match.attribute_names
end
def test_find_or_create_by
match = ActiveRecord::DynamicFinderMatch.match("find_or_create_by_age_and_sex_and_location")
assert_not_nil match
assert !match.finder?
assert match.instantiator?
assert_equal :first, match.finder
assert_equal :create, match.instantiator
assert_equal %w(age sex location), match.attribute_names
end
end
class FinderTest < ActiveRecord::TestCase
fixtures :companies, :topics, :entrants, :developers, :developers_projects, :posts, :comments, :accounts, :authors, :customers, :categories, :categorizations