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:
Diffstat (limited to 'features/steps/project/browse_tags.rb')
-rw-r--r--features/steps/project/browse_tags.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/features/steps/project/browse_tags.rb b/features/steps/project/browse_tags.rb
new file mode 100644
index 00000000000..0cbfa0d80aa
--- /dev/null
+++ b/features/steps/project/browse_tags.rb
@@ -0,0 +1,10 @@
+class ProjectBrowseTags < Spinach::FeatureSteps
+ include SharedAuthentication
+ include SharedProject
+ include SharedPaths
+
+ Then 'I should see "Shop" all tags list' do
+ page.should have_content "Tags"
+ page.should have_content "v1.2.1"
+ end
+end