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

issues.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70f480a3bcb3fbe57676001def5c225230ef4865 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

FactoryBot.define do
  factory :issue do
    title { generate(:title) }
    project
    author { project.creator }
    updated_by { author }

    trait :confidential do
      confidential { true }
    end

    trait :opened do
      state { :opened }
    end

    trait :locked do
      discussion_locked { true }
    end

    trait :closed do
      state { :closed }
      closed_at { Time.now }
    end

    factory :closed_issue, traits: [:closed]
    factory :reopened_issue, traits: [:opened]

    factory :labeled_issue do
      transient do
        labels { [] }
      end

      after(:create) do |issue, evaluator|
        issue.update(labels: evaluator.labels)
      end
    end
  end
end