0
我試圖測試一些實體是否與所有者實體正確關聯。活動記錄測試has_many協會
class Recipe < ActiveRecord::Base
has_many :ingredients
end
我已經插入配料,後來想要測試它們是否屬於給定配方。在黃瓜我想測試類似於:
recipe.ingredients.should_contain(ingredient1, ingredient2)
我該如何測試?