summaryrefslogtreecommitdiff
path: root/features/project/labels.feature
blob: 955bc3d8b1b0e03b3efd1c501aaa7d0c803a7215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@labels
Feature: Labels
  Background:
    Given I sign in as a user
    And I own project "Shop"
    And project "Shop" has labels: "bug", "feature", "enhancement"
    When I visit project "Shop" labels page

  @javascript
  Scenario: I can subscribe to a label
    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