2012-09-10 15:35:23 +02:00
|
|
|
class ProjectNetworkGraph < Spinach::FeatureSteps
|
2012-09-10 17:35:03 +02:00
|
|
|
include SharedAuthentication
|
|
|
|
include SharedProject
|
|
|
|
|
2012-09-10 15:35:23 +02:00
|
|
|
Then 'page should have network graph' do
|
|
|
|
page.should have_content "Project Network Graph"
|
|
|
|
within ".graph" do
|
|
|
|
page.should have_content "master"
|
|
|
|
page.should have_content "scss_refactor..."
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
And 'I visit project "Shop" network page' do
|
|
|
|
project = Project.find_by_name("Shop")
|
|
|
|
|
|
|
|
# Stub out find_all to speed this up (10 commits vs. 650)
|
|
|
|
commits = Grit::Commit.find_all(project.repo, nil, {max_count: 10})
|
|
|
|
Grit::Commit.stub(:find_all).and_return(commits)
|
|
|
|
|
|
|
|
visit graph_project_path(project)
|
|
|
|
end
|
|
|
|
end
|