Sha256: f63fa747f14360d75c1cc7237a77ce1059e04e07b2d7441168496e3090798933
Contents?: true
Size: 338 Bytes
Versions: 3
Compression:
Stored size: 338 Bytes
Contents
module ShoppingCart FactoryGirl.define do factory :credit_card, class: CreditCard do number { CreditCardValidations::Factory.random :visa } cvv '123' year { Date.today.year } month { Date.today.month } first_name { FFaker::Name.first_name } last_name { FFaker::Name.last_name } end end end
Version data entries
3 entries across 3 versions & 1 rubygems