summaryrefslogtreecommitdiff
path: root/spec/factories/broadcast_messages.rb
blob: efe9803b1a7159fc40debcb74442d7b51880fa17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FactoryGirl.define do
  factory :broadcast_message do
    message "MyText"
    starts_at Date.yesterday
    ends_at Date.tomorrow

    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