diff --git a/spec/factories/price_factory.rb b/spec/factories/price_factory.rb new file mode 100644 index 0000000000..fe84e5c8f5 --- /dev/null +++ b/spec/factories/price_factory.rb @@ -0,0 +1,7 @@ +FactoryBot.define do + factory :price, class: Spree::Price do + variant + amount 19.99 + currency 'USD' + end +end