diff options
author | Rémy Coutable <remy@rymai.me> | 2016-04-20 14:34:28 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-05-10 11:45:03 +0200 |
commit | 1026f2ad0982493cb5465404ef4ebe71a0082bc0 (patch) | |
tree | 6e98f0760a978f249bcc4b8a3288bd238f582abd /features/project | |
parent | f95a8e450c37e89b2d03b1c7bd2ca609a1d288e7 (diff) | |
download | gitlab-ce-1026f2ad0982493cb5465404ef4ebe71a0082bc0.tar.gz |
Add integration specs for tags
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'features/project')
-rw-r--r-- | features/project/commits/tags.feature | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/features/project/commits/tags.feature b/features/project/commits/tags.feature deleted file mode 100644 index a4be39b2d40..00000000000 --- a/features/project/commits/tags.feature +++ /dev/null @@ -1,46 +0,0 @@ -@project_commits -Feature: Project Commits Tags - Background: - Given I sign in as a user - And I own project "Shop" - Given I visit project tags page - - Scenario: I can see all git tags - Then I should see "Shop" all tags list - - Scenario: I create a tag - And I click new tag link - And I submit new tag form - Then I should see new tag created - - Scenario: I create a tag with release notes - Given I click new tag link - And I submit new tag form with release notes - Then I should see new tag created - And I should see tag release notes - - Scenario: I create a tag with invalid name - And I click new tag link - And I submit new tag form with invalid name - Then I should see new an error that tag is invalid - - Scenario: I create a tag with invalid reference - And I click new tag link - And I submit new tag form with invalid reference - Then I should see new an error that tag ref is invalid - - Scenario: I create a tag that already exists - And I click new tag link - And I submit new tag form with tag that already exists - Then I should see new an error that tag already exists - - Scenario: I delete a tag - Given I visit tag 'v1.1.0' page - Given I delete tag 'v1.1.0' - Then I should not see tag 'v1.1.0' - - Scenario: I add release notes to the tag - Given I visit tag 'v1.1.0' page - When I click edit tag link - And I fill release notes and submit form - Then I should see tag release notes |