BigW Consortium Gitlab

issues.rb 542 Bytes
Newer Older
1 2 3 4 5 6
FactoryGirl.define do
  factory :issue do
    title
    author
    project

7 8 9 10
    trait :confidential do
      confidential true
    end

11 12 13 14 15 16 17 18 19 20
    trait :closed do
      state :closed
    end

    trait :reopened do
      state :reopened
    end

    factory :closed_issue, traits: [:closed]
    factory :reopened_issue, traits: [:reopened]
21 22 23 24 25 26 27 28 29 30

    factory :labeled_issue do
      transient do
        labels []
      end

      after(:create) do |issue, evaluator|
        issue.update_attributes(labels: evaluator.labels)
      end
    end
31 32
  end
end