Remove unused tags in GitLab QA feature specs

[ci skip]
This commit is contained in:
Grzegorz Bizon 2017-03-09 12:34:23 +01:00
parent 6373ef07c7
commit 8a418f3e48
5 changed files with 6 additions and 8 deletions

View File

@ -6,7 +6,7 @@ module QA
# including staging and on-premises installation.
#
class Instance < Scenario::Template
def perform(address, tag, *files)
def perform(address, *files)
Specs::Config.perform do |specs|
specs.address = address
end
@ -17,9 +17,7 @@ module QA
Runtime::Release.perform_before_hooks
Specs::Runner.perform do |specs|
files = files.any? ? files : 'qa/specs/features'
specs.rspec('--tty', '--tag', tag.to_s, files)
specs.rspec('--tty', files.any? ? files : 'qa/specs/features')
end
end
end

View File

@ -1,5 +1,5 @@
module QA
feature 'standard root login', :ce, :ee do
feature 'standard root login' do
scenario 'user logs in using credentials' do
Page::Main::Entry.act { sign_in_using_credentials }

View File

@ -1,5 +1,5 @@
module QA
feature 'create a new project', :ce, :ee, :staging do
feature 'create a new project' do
scenario 'user creates a new project' do
Page::Main::Entry.act { sign_in_using_credentials }

View File

@ -1,5 +1,5 @@
module QA
feature 'clone code from the repository', :ce, :ee, :staging do
feature 'clone code from the repository' do
context 'with regular account over http' do
given(:location) do
Page::Project::Show.act do

View File

@ -1,5 +1,5 @@
module QA
feature 'push code to repository', :ce, :ee, :staging do
feature 'push code to repository' do
context 'with regular account over http' do
scenario 'user pushes code to the repository' do
Page::Main::Entry.act { sign_in_using_credentials }