Files
openfoodnetwork/spec/factories/price_factory.rb
2020-12-09 23:09:33 +00:00

10 lines
159 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :price, class: Spree::Price do
variant
amount { 19.99 }
currency { 'USD' }
end
end