2016-02-12 09:58:39 -05:00
|
|
|
@labels
|
|
|
|
Feature: Labels
|
|
|
|
Background:
|
|
|
|
Given I sign in as a user
|
|
|
|
And I own project "Shop"
|
|
|
|
And project "Shop" has labels: "bug", "feature", "enhancement"
|
2016-03-01 11:33:13 -05:00
|
|
|
When I visit project "Shop" labels page
|
2016-02-12 09:58:39 -05:00
|
|
|
|
|
|
|
@javascript
|
|
|
|
Scenario: I can subscribe to a label
|
2016-03-01 11:33:13 -05:00
|
|
|
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
|