Skip to content

Commit

Permalink
[ci] Tag tests that got moved to rspec
Browse files Browse the repository at this point in the history
  • Loading branch information
bgeuken committed Feb 11, 2016
1 parent 74a246e commit 0913f41
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/api/test/functional/webui/attributes_test.rb
Expand Up @@ -11,7 +11,7 @@ class Webui::AttributesTest < Webui::IntegrationTest
use_js
end

def add attribute
def add attribute # spec/features/webui/attributes_spec.rb
attribute[:value] ||= ''
attribute[:expect] ||= :success
attribute[:id] = attribute[:name].split(':').join('-')
Expand Down Expand Up @@ -90,7 +90,7 @@ def add attribute
end
end

def delete attribute
def delete attribute # spec/features/webui/attributes_spec.rb
attribute[:value] ||= ''
attribute[:expect] ||= :success
attribute[:id] = attribute[:name].split(':').join('-')
Expand Down Expand Up @@ -125,7 +125,7 @@ def test_attrib_invalid_project # spec/features/webui/attributes_spec.rb
page.must_have_content "Project not found: Does:Not:Exist"
end

def test_project_attribute
def test_project_attribute # spec/features/webui/attributes_spec.rb
login_king

add(project: 'home:Iggy',
Expand All @@ -135,7 +135,7 @@ def test_project_attribute
name: 'OBS:ScreenShots')
end

def test_package_attribute
def test_package_attribute # spec/features/webui/attributes_spec.rb
login_king

add(project: 'Apache',
Expand All @@ -157,7 +157,7 @@ def test_attrib_with_single_value
name: 'OBS:ScreenShots')
end

def test_attrib_with_multiple_values
def test_attrib_with_multiple_values # spec/features/webui/attributes_spec.rb
login_king

add(project: 'home:Iggy',
Expand Down

0 comments on commit 0913f41

Please sign in to comment.