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

FactoryBot.define do
  factory :git_wiki_commit_details, class: 'Gitlab::Git::Wiki::CommitDetails' do
    skip_create

    transient do
      author { create(:user) }
    end

    sequence(:message) { |n| "Commit message #{n}" }

    initialize_with { new(author.id, author.username, author.name, author.email, message) }
  end
end