mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Fixtures: people(:technomancy, :josh) returns both fixtures. Closes #7880.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6940 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -743,9 +743,9 @@ class HasManyAssociationsTest < Test::Unit::TestCase
|
||||
def test_find_or_create
|
||||
number_of_clients = companies(:first_firm).clients.size
|
||||
the_client = companies(:first_firm).clients.find_or_create_by_name("Yet another client")
|
||||
assert_equal number_of_clients + 1, companies(:first_firm, :refresh).clients.size
|
||||
assert_equal number_of_clients + 1, companies(:first_firm, :reload).clients.size
|
||||
assert_equal the_client, companies(:first_firm).clients.find_or_create_by_name("Yet another client")
|
||||
assert_equal number_of_clients + 1, companies(:first_firm, :refresh).clients.size
|
||||
assert_equal number_of_clients + 1, companies(:first_firm, :reload).clients.size
|
||||
end
|
||||
|
||||
def test_deleting
|
||||
|
||||
@@ -259,6 +259,19 @@ class FixturesWithoutInstantiationTest < Test::Unit::TestCase
|
||||
assert_equal "Jamis", developers(:jamis).name
|
||||
assert_equal 50, accounts(:signals37).credit_limit
|
||||
end
|
||||
|
||||
def test_accessor_methods_with_multiple_args
|
||||
assert_equal 2, topics(:first, :second).size
|
||||
assert_raise(StandardError) { topics([:first, :second]) }
|
||||
end
|
||||
|
||||
uses_mocha 'reloading_fixtures_through_accessor_methods' do
|
||||
def test_reloading_fixtures_through_accessor_methods
|
||||
assert_equal "The First Topic", topics(:first).title
|
||||
@loaded_fixtures['topics']['first'].expects(:find).returns(stub(:title => "Fresh Topic!"))
|
||||
assert_equal "Fresh Topic!", topics(:first, true).title
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user