Skip to content
Snippets Groups Projects
Verified Commit 5913f744 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Clickable labels feature test

parent 350f5574
No related branches found
No related tags found
No related merge requests found
Loading
@@ -119,3 +119,10 @@ Feature: Project Issues
Loading
@@ -119,3 +119,10 @@ Feature: Project Issues
Given I click link "New Issue" Given I click link "New Issue"
And I submit new issue "500 error on profile" And I submit new issue "500 error on profile"
Then I should see issue "500 error on profile" Then I should see issue "500 error on profile"
Scenario: Clickable labels
Given issue 'Release 0.4' has label 'bug'
And I visit project "Shop" issues page
When I click label 'bug'
And I should see "Release 0.4" in issues
And I should not see "Tweet control" in issues
Loading
@@ -45,4 +45,3 @@ Feature: Project Labels
Loading
@@ -45,4 +45,3 @@ Feature: Project Labels
And I visit project "Forum" new label page And I visit project "Forum" new label page
When I submit new label 'bug' When I submit new label 'bug'
Then I should see label 'bug' Then I should see label 'bug'
Loading
@@ -218,6 +218,18 @@ class ProjectIssues < Spinach::FeatureSteps
Loading
@@ -218,6 +218,18 @@ class ProjectIssues < Spinach::FeatureSteps
page.should_not have_content 'Bugfix1' page.should_not have_content 'Bugfix1'
end end
   
step 'issue \'Release 0.4\' has label \'bug\'' do
label = project.labels.create!(name: 'bug', color: '#990000')
issue = Issue.find_by!(title: 'Release 0.4')
issue.labels << label
end
step 'I click label \'bug\'' do
within ".issues-list" do
click_link 'bug'
end
end
def filter_issue(text) def filter_issue(text)
fill_in 'issue_search', with: text fill_in 'issue_search', with: text
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment