summaryrefslogtreecommitdiff
path: root/spec/factories/suggestions.rb
blob: 307523cc0617cbfae0aa51e27b34136a49b7ee04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

FactoryBot.define do
  factory :suggestion do
    relative_order 0
    association :note, factory: :diff_note_on_merge_request
    from_content "    vars = {\n"
    to_content "    vars = [\n"

    trait :unappliable do
      from_content "foo"
      to_content "foo"
    end

    trait :applied do
      applied true
      commit_id { RepoHelpers.sample_commit.id }
    end
  end
end