diff options
author | Rubén Dávila <rdavila84@gmail.com> | 2016-02-22 13:17:38 -0500 |
---|---|---|
committer | Rubén Dávila <rdavila84@gmail.com> | 2016-02-22 13:17:38 -0500 |
commit | 3d96bfaa8aa24f6ecdfb6c2e4189b01bb0ce1b51 (patch) | |
tree | dd1174d5d011a9948d47804003d7a5b10aa729a0 /features | |
parent | 2cc9a42ca45d14fc7fe35ea6f8bc4f9275f33144 (diff) | |
download | gitlab-ce-3d96bfaa8aa24f6ecdfb6c2e4189b01bb0ce1b51.tar.gz |
Don't repeat labels listed on Labels tab.issue_13621
Diffstat (limited to 'features')
-rw-r--r-- | features/project/milestone.feature | 1 | ||||
-rw-r--r-- | features/steps/project/project_milestone.rb | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/features/project/milestone.feature b/features/project/milestone.feature index e0f4c0e9d7c..713f0f3b979 100644 --- a/features/project/milestone.feature +++ b/features/project/milestone.feature @@ -13,6 +13,7 @@ Feature: Project Milestone Given I visit project "Shop" milestones page And I click link "v2.2" Then I should see the labels "bug", "enhancement" and "feature" + And I should see the "bug" label listed only once @javascript Scenario: Listing labels from labels tab diff --git a/features/steps/project/project_milestone.rb b/features/steps/project/project_milestone.rb index ec881c0d8fc..2508c09e36d 100644 --- a/features/steps/project/project_milestone.rb +++ b/features/steps/project/project_milestone.rb @@ -41,6 +41,12 @@ class Spinach::Features::ProjectMilestone < Spinach::FeatureSteps end end + step 'I should see the "bug" label listed only once' do + page.within('#tab-labels') do + expect(page).to have_content('bug', count: 1) + end + end + step 'I click link "v2.2"' do click_link "v2.2" end |