Welcome to mirror list, hosted at ThFree Co, Russian Federation.

approvals.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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