2019-01-25 21:53:06 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :user_system_notification do
|
|
|
|
user
|
|
|
|
system_notification
|
|
|
|
trait :seen do
|
2019-09-12 23:21:48 +08:00
|
|
|
seen_at { Faker::Time.between(from: 3.days.ago, to: Date.today) }
|
2019-01-25 21:53:06 +08:00
|
|
|
end
|
|
|
|
trait :read do
|
2019-09-12 23:21:48 +08:00
|
|
|
read_at { Faker::Time.between(from: 3.days.ago, to: Date.today) }
|
2019-01-25 21:53:06 +08:00
|
|
|
end
|
|
|
|
trait :seen_and_read do
|
2019-09-12 23:21:48 +08:00
|
|
|
seen_at { Faker::Time.between(from: 3.days.ago, to: Date.today) }
|
|
|
|
read_at { Faker::Time.between(from: seen_at, to: Date.today) }
|
2019-01-25 21:53:06 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|