Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-08-17 18:21:31 +0400
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-12 09:35:57 +0400
commit37a274a56861803f8387822062a2d2c1e6662f33 (patch)
tree524587886276c07a29cb30b8ff865eec58038e3e /features/project
parent6c9cb565f16a006df7c980eadcd7061edb7b9281 (diff)
update tags count if tag gets deleted
Diffstat (limited to 'features/project')
-rw-r--r--features/project/commits/tags.feature10
1 files changed, 10 insertions, 0 deletions
diff --git a/features/project/commits/tags.feature b/features/project/commits/tags.feature
index 36c7a6492ff..bea463cb786 100644
--- a/features/project/commits/tags.feature
+++ b/features/project/commits/tags.feature
@@ -27,5 +27,15 @@ Feature: Project Browse tags
And I submit new tag form with tag that already exists
Then I should see new an error that tag already exists
+ @javascript
+ Scenario: I delete a tag
+ Given I delete tag 'v1.1.0'
+ Then I should not see tag 'v1.1.0'
+
+ @javascript
+ Scenario: I delete all tags and see info message
+ Given I delete all tags
+ Then I should see tags info message
+
# @wip
# Scenario: I can download project by tag