2020-07-28 23:09:34 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :custom_emoji, class: 'CustomEmoji' do
|
|
|
|
sequence(:name) { |n| "custom_emoji#{n}" }
|
|
|
|
namespace
|
2021-01-29 00:20:46 +05:30
|
|
|
group
|
|
|
|
file { 'https://gitlab.com/images/partyparrot.png' }
|
2021-04-17 20:07:23 +05:30
|
|
|
creator { namespace.owner }
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
end
|