You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
393 B
13 lines
393 B
2 years ago
|
FactoryBot.define do
|
||
|
factory :sales_log do
|
||
|
created_by { FactoryBot.create(:user) }
|
||
|
owning_organisation { created_by.organisation }
|
||
|
managing_organisation { created_by.organisation }
|
||
|
created_at { Time.utc(2022, 2, 8, 16, 52, 15) }
|
||
|
updated_at { Time.utc(2022, 2, 8, 16, 52, 15) }
|
||
|
trait :completed do
|
||
|
saledate { Time.utc(2022, 2, 2, 10, 36, 49) }
|
||
|
end
|
||
|
end
|
||
|
end
|