提交 68b19ea7 编写于 作者: J Jeremy Kemper

Don't expect fixtures to be returned in the order they were inserted.

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1402 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 cd033c63
......@@ -44,8 +44,9 @@ def test_loading_with_no_associations
def test_eager_association_loading_with_belongs_to
comments = Comment.find(:all, :include => :post)
assert_equal posts(:welcome).title, comments.first.post.title
assert_equal posts(:thinking).title, comments.last.post.title
titles = comments.map { |c| c.post.title }
assert titles.include?(posts(:welcome).title)
assert titles.include?(posts(:thinking).title)
end
def test_eager_association_loading_with_habtm
......
......@@ -181,7 +181,7 @@ def test_has_and_belongs_to_many
active_record = Project.find(1)
assert active_record.has_developers?
assert_equal 2, active_record.developers_count
assert_equal david.name, active_record.developers.first.name
assert active_record.developers.include?(david)
end
def test_has_and_belongs_to_many_removing
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册