21 lines
416 B
Ruby
21 lines
416 B
Ruby
|
# 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
|