require 'spec_helper' describe "Projects" do before do login_as :user @project = FactoryGirl.create :project end describe "GET /projects", js: true do before do stub_js_gitlab_calls visit projects_path end it { page.should have_content @project.name } end describe "GET /projects/:id" do before do visit project_path(@project) end it { page.should have_content @project.name } it { page.should have_content 'All commits' } 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/charts" do before do visit project_charts_path(@project) end it { page.should have_content 'Overall' } it { page.should have_content 'Builds chart for last week' } it { page.should have_content 'Builds chart for last month' } it { page.should have_content 'Builds chart for last year' } it { page.should have_content 'Commit duration in minutes for last 30 commits' } end end