2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :git_wiki_commit_details, class: 'Gitlab::Git::Wiki::CommitDetails' do
|
|
|
|
skip_create
|
|
|
|
|
|
|
|
transient do
|
2021-04-29 21:17:54 +05:30
|
|
|
author { association(:user) }
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
sequence(:message) { |n| "Commit message #{n}" }
|
|
|
|
|
|
|
|
initialize_with { new(author.id, author.username, author.name, author.email, message) }
|
|
|
|
end
|
|
|
|
end
|