summaryrefslogtreecommitdiff
path: root/spec/factories/approvals.rb
blob: 91e6fa54894327afcde1ac95be7070dfd4634327 (plain)
1
2
3
4
5
6
7
8
9
10
# 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