Cucumber -> Network graph feature

This commit is contained in:
randx 2012-06-16 13:03:20 +03:00
parent 781fd1a80c
commit 6745a5e5c1
3 changed files with 29 additions and 0 deletions

View file

@ -50,3 +50,19 @@ Given /^I write new comment "(.*?)"$/ do |arg1|
click_button "Add Comment"
end
Given /^I visit project "(.*?)" network page$/ do |arg1|
project = Project.find_by_name(arg1)
visit graph_project_path(project)
end
Given /^show me page$/ do
save_and_open_page
end
Given /^page should have network graph$/ do
page.should have_content "Project Network Graph"
within ".graph" do
page.should have_content "stable"
page.should have_content "notes_refacto..."
end
end