summaryrefslogtreecommitdiff
path: root/spec/factories/broadcast_messages.rb
blob: fa8d255ae79378db86a7bd8a1c3aadda34c83a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

FactoryBot.define do
  factory :broadcast_message do
    message { "MyText" }
    starts_at { 1.day.ago }
    ends_at { 1.day.from_now }

    broadcast_type { :banner }

    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

    trait :notification do
      broadcast_type { :notification }
    end
  end
end