Added feature test for stats

This commit is contained in:
randx 2012-11-10 23:33:10 +02:00
parent 1c5b2a5153
commit 3e04673334
5 changed files with 17 additions and 3 deletions

View file

@ -51,4 +51,10 @@ class ProjectBrowseCommits < Spinach::FeatureSteps
find('ul.breadcrumb li:first a')['href'].should match(/#{@project.path}\/commits\/master\z/)
find('ul.breadcrumb li:last a')['href'].should match(%r{master/app/models/project\.rb\z})
end
Then 'I see commits stats' do
page.should have_content 'Stats for master'
page.should have_content 'Committers'
page.should have_content 'Total commits'
end
end