summaryrefslogtreecommitdiff
path: root/features/project
diff options
context:
space:
mode:
authorJacob Schatz <jschatz1@gmail.com>2016-02-19 19:44:13 +0000
committerJacob Schatz <jschatz1@gmail.com>2016-02-19 19:44:13 +0000
commitde84fa365eff85a3d21a664f24e9832a664c10c9 (patch)
tree4bfc6b5c369626a94bc306888a773751d97e5b6c /features/project
parentbcc23320618c861491add3439abe783ef9b19b37 (diff)
parent62dd6745bd5d3fd1a144b13701bf80f4cb13f887 (diff)
downloadgitlab-ce-de84fa365eff85a3d21a664f24e9832a664c10c9.tar.gz
Merge branch 'issue_3276' into 'master'
Labels should be visible in milestone view Closes #3276 See merge request !2599
Diffstat (limited to 'features/project')
-rw-r--r--features/project/milestone.feature23
1 files changed, 23 insertions, 0 deletions
diff --git a/features/project/milestone.feature b/features/project/milestone.feature
new file mode 100644
index 00000000000..e0f4c0e9d7c
--- /dev/null
+++ b/features/project/milestone.feature
@@ -0,0 +1,23 @@
+Feature: Project Milestone
+ Background:
+ Given I sign in as a user
+ And I own project "Shop"
+ And project "Shop" has labels: "bug", "feature", "enhancement"
+ And project "Shop" has milestone "v2.2"
+ And milestone has issue "Bugfix1" with labels: "bug", "feature"
+ And milestone has issue "Bugfix2" with labels: "bug", "enhancement"
+
+
+ @javascript
+ Scenario: Listing issues from issues tab
+ Given I visit project "Shop" milestones page
+ And I click link "v2.2"
+ Then I should see the labels "bug", "enhancement" and "feature"
+
+ @javascript
+ Scenario: Listing labels from labels tab
+ Given I visit project "Shop" milestones page
+ And I click link "v2.2"
+ And I click link "Labels"
+ Then I should see the list of labels
+ And I should see the labels "bug", "enhancement" and "feature"