Improve the tests to not call assert_nothing_raised

This commit is contained in:
Rafael Mendonça França 2014-01-01 14:15:01 -02:00
parent b94e2dd82c
commit da0463cf5e

@ -176,10 +176,7 @@ def test_eager_association_loading_with_recursive_cascading_four_levels_has_and_
end
def test_eager_association_loading_with_cascaded_interdependent_one_level_and_two_levels
authors_relation = Author.all.merge!(:includes => [:comments, {:posts => :categorizations}], :order => "authors.id")
assert_nothing_raised do
authors_relation.to_a
end
authors_relation = Author.all.merge!(includes: [:comments, { posts: :categorizations }], order: "authors.id")
authors = authors_relation.to_a
assert_equal 3, authors.size
assert_equal 10, authors[0].comments.size