Sha256: 50a8e6a1fc371a281797674552ffa53879f2c3ed582564e20197ab97da7ceb54
Contents?: true
Size: 424 Bytes
Versions: 24
Compression:
Stored size: 424 Bytes
Contents
# frozen_string_literal: true FactoryBot.define do factory :store_credit, class: 'Spree::StoreCredit' do association :user, strategy: :create association :created_by, factory: :user, strategy: :create association :category, factory: :store_credit_category, strategy: :create amount { 150.00 } currency { "USD" } association :credit_type, factory: :primary_credit_type, strategy: :create end end
Version data entries
24 entries across 24 versions & 1 rubygems