improve seeds for the users and add clients
This commit is contained in:
parent
32e1ebfb94
commit
a88f94ba3a
2 changed files with 7 additions and 2 deletions
|
@ -5,7 +5,12 @@ unless Rails.env.production?
|
|||
users = FactoryGirl.create_list(:user, 20)
|
||||
100.times do
|
||||
sample_users = users.sample(2)
|
||||
FactoryGirl.create :transaction, debtor: sample_users[0], creditor: sample_users[1], amount: 1 + rand(100)
|
||||
FactoryGirl.create :transaction, debtor: sample_users[0], creditor: sample_users[1]
|
||||
end
|
||||
clients = FactoryGirl.create_list(:client, 5)
|
||||
100.times do
|
||||
debtor, creditor = users.sample(2)
|
||||
FactoryGirl.create :client_transaction, issuer: clients.sample, debtor: debtor, creditor: creditor
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -19,7 +19,7 @@ FactoryGirl.define do
|
|||
association :debtor, factory: :user
|
||||
association :creditor, factory: :user
|
||||
issuer { debtor }
|
||||
amount { 1 + rand(100) }
|
||||
amount { 1 + rand(10000) }
|
||||
message { Faker::Lorem.sentence }
|
||||
factory :client_transaction do
|
||||
association :issuer, factory: :client
|
||||
|
|
Loading…
Reference in a new issue