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

project_browse_tags.rb « project « steps « features - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cbfa0d80aaf33d0637fa2b2e5e53be1630ebb39 (plain)
1
2
3
4
5
6
7
8
9
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