mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-15 21:22:09 +00:00
10 lines
262 B
Ruby
10 lines
262 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :merge_request_diff_commit_user, class: 'MergeRequest::DiffCommitUser' do
|
|
name { generate(:name) }
|
|
email { generate(:email) }
|
|
organization_id { create(:common_organization).id }
|
|
end
|
|
end
|