Sha256: 78cecb71fb427b7cea36e21a181e58cba5135dc179a973843f3acf6f4bb3f848
Contents?: true
Size: 375 Bytes
Versions: 4
Compression:
Stored size: 375 Bytes
Contents
FactoryBot.define do factory :credit_card, class: 'Spree::CreditCard' do verification_value 123 month 12 year { 1.year.from_now.year } number '4111111111111111' name 'Spree Commerce' association(:payment_method, factory: :credit_card_payment_method) association(:address) trait :failing do number "0000000000000000" end end end
Version data entries
4 entries across 4 versions & 1 rubygems