summaryrefslogtreecommitdiff
path: root/spec/features/projects_spec.rb
blob: 7f2b3eb5f976e1504ddcca039354682a7c46c0fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
require 'spec_helper'

describe "Projects" do
  before do
    login_as :user
    @project = FactoryGirl.create :project
  end

  describe "GET /projects" do
    before do
      visit projects_path
    end

    it { page.should have_content @project.name }
    it { page.should have_content 'Add Project' }
  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 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

  describe "GET /projects/:id/run" do
    before do
      visit run_project_path(@project, ref: 'master')
    end

    it { current_path.should == project_build_path(@project, @project.builds.last) }
    it { page.should have_content @project.builds.last.git_commit_message }
  end
end