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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-07-02 00:08:51 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-07-02 00:08:51 +0300
commitfe25c98fa838d9a6dd08bec9a5ac743560fa2ebd (patch)
treec5da508b27669257832eed276e0c06170750ff38 /spec/factories/approvals.rb
parentcc7885bc21004e6c663706778252e4f495167dde (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/factories/approvals.rb')
-rw-r--r--spec/factories/approvals.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/factories/approvals.rb b/spec/factories/approvals.rb
new file mode 100644
index 00000000000..91e6fa54894
--- /dev/null
+++ b/spec/factories/approvals.rb
@@ -0,0 +1,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