Welcome to mirror list, hosted at ThFree Co, Russian Federation.

broadcast_messages.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2fdf89213a614377edc126ae36c5494cfcd4a24 (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 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