Sha256: 5e544127db19ade83309a54c114002f6302c3c77d02ce7c7cbbe842a83bc6e8f
Contents?: true
Size: 306 Bytes
Versions: 6
Compression:
Stored size: 306 Bytes
Contents
Factory.define(:creditcard) do |f| f.verification_value 123 f.month 12 f.year 2013 f.number "4111111111111111" f.association :address f.association :checkout end Factory.define :authorized_creditcard, :parent => :creditcard do |f| f.creditcard_payments { [Factory(:creditcard_payment)] } end
Version data entries
6 entries across 6 versions & 2 rubygems