diff options
author | blackst0ne <blackst0ne.ru@gmail.com> | 2018-04-11 11:47:23 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2018-04-11 11:47:23 +0000 |
commit | 90cccf0f9feabfdc963c9bb8638e12548b4d179b (patch) | |
tree | 66b99636abac3e3c6e20ab74a7c1a8d0aef4fab5 /features/project | |
parent | 5566bc86b1634d4455ee74ab16464ccdd8d4c594 (diff) | |
download | gitlab-ce-90cccf0f9feabfdc963c9bb8638e12548b4d179b.tar.gz |
Replace the `project/issues/milestones.feature` spinach test with an rspec analog
Diffstat (limited to 'features/project')
-rw-r--r-- | features/project/issues/milestones.feature | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/features/project/issues/milestones.feature b/features/project/issues/milestones.feature deleted file mode 100644 index 77c8ed6e5bf..00000000000 --- a/features/project/issues/milestones.feature +++ /dev/null @@ -1,43 +0,0 @@ -@project_issues -Feature: Project Issues Milestones - Background: - Given I sign in as a user - And I own project "Shop" - And project "Shop" has milestone "v2.2" - Given I visit project "Shop" milestones page - - Scenario: I should see active milestones - Then I should see milestone "v2.2" - - Scenario: I should see milestone - Given I click link "v2.2" - Then I should see milestone "v2.2" - - @javascript - Scenario: I create and delete new milestone - Given I click link "New Milestone" - And I submit new milestone "v2.3" - Then I should see milestone "v2.3" - Given I click button to remove milestone - And I confirm in modal - When I visit project "Shop" activity page - Then I should see deleted milestone activity - - @javascript - Scenario: I delete new milestone - Given I click button to remove milestone - And I confirm in modal - And I should see no milestones - - @javascript - Scenario: Listing closed issues - Given the milestone has open and closed issues - And I click link "v2.2" - Then I should see 3 issues - - # Markdown - - Scenario: Headers inside the description should have ids generated for them. - Given I click link "v2.2" - # PLEASE USE the `have_header_with_correct_id_and_link(level, text, id, parent)` matcher on migrating this spec to rspec. - Then Header "Description header" should have correct id and link |