blob: ed6e267e7c487eb93e2f6ae4b2478e9b76fc3520 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# frozen_string_literal: true
FactoryBot.define do
factory :broadcast_message do
message { "MyText" }
starts_at { 1.day.ago }
ends_at { 1.day.from_now }
trait :expired do
starts_at { 5.days.ago }
ends_at { 3.days.ago }
end
trait :future do
starts_at { 5.days.from_now }
ends_at { 6.days.from_now }
end
end
end
|