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/steps/project | |
parent | 2cc9a42ca45d14fc7fe35ea6f8bc4f9275f33144 (diff) | |
download | gitlab-ce-3d96bfaa8aa24f6ecdfb6c2e4189b01bb0ce1b51.tar.gz |
Don't repeat labels listed on Labels tab.issue_13621
Diffstat (limited to 'features/steps/project')
-rw-r--r-- | features/steps/project/project_milestone.rb | 6 |
1 files changed, 6 insertions, 0 deletions
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 |