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

more project feature specs

parent 6474675b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -23,5 +23,32 @@ describe "Projects" do
it { page.should have_content @project.name }
it { page.should have_content 'All builds' }
end
describe "GET /projects/:id/edit" do
before do
visit edit_project_path(@project)
end
it { page.should have_content @project.name }
it { page.should have_content 'Build Schedule' }
end
describe "GET /projects/:id/stats" do
before do
visit stats_project_path(@project)
end
it { page.should have_content @project.name }
it { page.should have_content 'Some stats related to the project' }
end
describe "GET /projects/:id/details" do
before do
visit details_project_path(@project)
end
it { page.should have_content @project.name }
it { page.should have_content 'Integration with GitLab and other services' }
end
end
 
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