OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/features/step_definitions/block_steps.rb

66 lines
2.2 KiB

Given /^there is a news "(.+)" for project "(.+)"$/ do |news_title, project_name|
project = Project.find_by_name(project_name)
project.news.create!(title: news_title, description: "lorem ipsum")
end
Then /^there should be (\d+) news$/ do |count|
News.count.should eql count.to_i
end
Then /^there should be (\d+) news for project "(.+)"$/ do |count, project_name|
project = Project.find_by_name(project_name)
project.news.count.should eql count.to_i
end
When(/^I should not see the news-headline "([^"]*)"$/) do |news_headline|
page.should_not have_css("#widget_news .news .overview a", text: news_headline)
end
When(/^I should see the news-headline "([^"]*)"$/) do |news_headline|
page.should have_css("#widget_news .news .overview a", text: news_headline)
end
# steps for issues reported by me
def reported_issue_subject
"#widget_issuesreportedbyme td.subject a"
end
When /^I should see the issue-subject "([^"]*)" in the 'Issues reported by me'-section$/ do |issue_subject|
page.should have_css(reported_issue_subject, text: issue_subject)
end
When /^I should not see the issue-subject "([^"]*)" in the 'Issues reported by me'-section$/ do |issue_subject|
page.should_not have_css(reported_issue_subject, text: issue_subject)
end
# steps for issues assigned to me
def assigned_to_me_issue_subject
"#widget_issuesassignedtome td.subject a"
end
When /^I should see the issue-subject "([^"]*)" in the 'Issues assigned to me'-section$/ do |issue_subject|
page.should have_css(assigned_to_me_issue_subject, text: issue_subject)
end
When /^I should not see the issue-subject "([^"]*)" in the 'Issues assigned to me'-section$/ do |issue_subject|
page.should_not have_css(assigned_to_me_issue_subject, text: issue_subject)
end
# steps for issues assigned to me
def watched_issue_subject
"#widget_issueswatched td.subject a"
end
When /^I should see the issue-subject "([^"]*)" in the 'Issues watched'-section$/ do |issue_subject|
page.should have_css(watched_issue_subject, text: issue_subject)
end
When /^I should not see the issue-subject "([^"]*)" in the 'Issues watched'-section$/ do |issue_subject|
page.should_not have_css(watched_issue_subject, text: issue_subject)
end