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:
authorPhil Hughes <me@iamphill.com>2016-06-24 19:45:55 +0300
committerPhil Hughes <me@iamphill.com>2016-07-05 11:06:38 +0300
commit5fcf475bc62651909dc5ddffac508f407781b082 (patch)
treec762f350ed6761025d0237257e388e4e242d1ca4 /features/steps
parentd10d32a324411ba010f3b0ea9da407cc736529b4 (diff)
Updated tests
Diffstat (limited to 'features/steps')
-rw-r--r--features/steps/shared/project.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/features/steps/shared/project.rb b/features/steps/shared/project.rb
index b3411c03118..0b4920883b8 100644
--- a/features/steps/shared/project.rb
+++ b/features/steps/shared/project.rb
@@ -223,6 +223,11 @@ module SharedProject
create(:label, project: project, title: 'enhancement')
end
+ step 'project "Shop" has issue: "bug report"' do
+ project = Project.find_by(name: "Shop")
+ create(:issue, project: project, title: "bug report")
+ end
+
step 'project "Shop" has CI enabled' do
project = Project.find_by(name: "Shop")
project.enable_ci