summaryrefslogtreecommitdiff
path: root/features/project
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-03-01 17:33:13 +0100
committerRémy Coutable <remy@rymai.me>2016-03-15 18:22:02 +0100
commit54ec7e959900493b6e9174bf4dfe09ed0afd1e46 (patch)
tree22b79458e9d5ad2aa8ccf7ae00935c9a14aae33c /features/project
parent0444fa560acd07255960284f19b1de6499cd5910 (diff)
downloadgitlab-ce-54ec7e959900493b6e9174bf4dfe09ed0afd1e46.tar.gz
Improving the original label-subscribing implementation
1. Make the "subscribed" text in Issuable sidebar reflect the labels subscription status 2. Current user mut be logged-in to toggle issue/MR/label subscription
Diffstat (limited to 'features/project')
-rw-r--r--features/project/labels.feature13
1 files changed, 6 insertions, 7 deletions
diff --git a/features/project/labels.feature b/features/project/labels.feature
index cd3f3a789f0..955bc3d8b1b 100644
--- a/features/project/labels.feature
+++ b/features/project/labels.feature
@@ -3,14 +3,13 @@ Feature: Labels
Background:
Given I sign in as a user
And I own project "Shop"
- And I visit project "Shop" issues page
And project "Shop" has labels: "bug", "feature", "enhancement"
+ When I visit project "Shop" labels page
@javascript
Scenario: I can subscribe to a label
- When I visit project "Shop" labels page
- Then I should see that I am unsubscribed
- When I click button "Subscribe"
- Then I should see that I am subscribed
- When I click button "Unsubscribe"
- Then I should see that I am unsubscribed
+ Then I should see that I am not subscribed to the "bug" label
+ When I click button "Subscribe" for the "bug" label
+ Then I should see that I am subscribed to the "bug" label
+ When I click button "Unsubscribe" for the "bug" label
+ Then I should see that I am not subscribed to the "bug" label