parsley/spec/factories/recipe_ingredients.rb

9 lines
105 B
Ruby
Raw Normal View History

2018-03-29 01:57:00 -05:00
FactoryBot.define do
2016-01-12 18:43:00 -06:00
factory :recipe_ingredient do
2018-09-12 11:15:04 -05:00
sort_order { 1 }
2018-07-13 15:42:08 -05:00
recipe
2018-09-11 10:38:07 -05:00
food
2016-01-12 18:43:00 -06:00
end
end