summaryrefslogtreecommitdiff
path: root/spec/factories/merge_request_diffs.rb
blob: e7b5118953811d4f7d2a6f00691cd10a20ed87bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

FactoryBot.define do
  factory :merge_request_diff do
    association :merge_request
    state :collected
    commits_count 1

    base_commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
    head_commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
    start_commit_sha { Digest::SHA1.hexdigest(SecureRandom.hex) }
  end
end