##// END OF EJS Templates
Do assertions on collection, not on association....
Jean-Philippe Lang -
r8265:0c2e4a72cad6
parent child
Show More
@@ -280,7 +280,7 class ProjectTest < ActiveSupport::TestCase
280
280
281 parent.reload
281 parent.reload
282 assert_equal 4, parent.children.size
282 assert_equal 4, parent.children.size
283 assert_equal parent.children.sort_by(&:name), parent.children
283 assert_equal parent.children.all.sort_by(&:name), parent.children.all
284 end
284 end
285
285
286 def test_rebuild_should_sort_children_alphabetically
286 def test_rebuild_should_sort_children_alphabetically
@@ -296,7 +296,7 class ProjectTest < ActiveSupport::TestCase
296
296
297 parent.reload
297 parent.reload
298 assert_equal 4, parent.children.size
298 assert_equal 4, parent.children.size
299 assert_equal parent.children.sort_by(&:name), parent.children
299 assert_equal parent.children.all.sort_by(&:name), parent.children.all
300 end
300 end
301
301
302
302
General Comments 0
You need to be logged in to leave comments. Login now