summaryrefslogtreecommitdiff
path: root/spec/requests/builds_spec.rb
blob: a245087453a21843a0ae010880c4839816fc8579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'spec_helper'

describe "Builds" do
  before do
    @project = FactoryGirl.create :project
    @commit = FactoryGirl.create :commit, project: @project
    @build = FactoryGirl.create :build, commit: @commit
  end

  describe "GET /:project/builds/:id/status.json" do
    before do
      get status_project_build_path(@project, @build), format: :json
    end

    it { response.status.should eq 200 }
    it { response.body.should include(@build.sha) }
  end
end