tab/spec/factories/transactions.rb
2015-09-08 13:37:30 +02:00

24 lines
570 B
Ruby

# == Schema Information
#
# Table name: transactions
#
# id :integer not null, primary key
# debtor_id :integer not null
# creditor_id :integer not null
# amount :integer default(0), not null
# origin :string not null
# message :string
# created_at :datetime not null
# updated_at :datetime not null
#
FactoryGirl.define do
factory :transaction do
debtor
creditor
amount { rand(100) }
origin 'FactoryGirl'
message { Faker::Lorem.sentence }
end
end