10 lines
181 B
Ruby
10 lines
181 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
|
|
|
FactoryBot.define do
|
|
factory :approval do
|
|
merge_request
|
|
user
|
|
end
|
|
end
|