debian-mirror-gitlab/spec/factories/suggestions.rb
2019-12-21 20:55:43 +05:30

27 lines
602 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
trait :content_from_repo do
after(:build) do |suggestion, evaluator|
suggestion.from_content = suggestion.fetch_from_content
end
end
end
end