我有一个简单的:item
工厂,带有一个运行良好的嵌套附件。
FactoryGirl.define do
factory :item do
before_create do |item|
item.attachments << FactoryGirl.build(:attachment, attachable: item)
end
end
end
我想检查以下内容
it "is invalid without a photo" do
FactoryGirl.create(:item).should_not be_valid
end
:item
调用现有工厂时如何删除附件?