foodsoft/spec/factories/group_order_invoice.rb

8 lines
128 B
Ruby
Raw Permalink Normal View History

2021-12-23 01:52:37 +01:00
require 'factory_bot'
FactoryBot.define do
factory :group_order_invoice do
2021-12-24 13:35:26 +01:00
group_order { create :group_order }
2021-12-23 01:52:37 +01:00
end
end