Files
gitlabhq/spec/requests/ci/builds_spec.rb
2015-09-14 16:48:33 +03:00

19 lines
491 B
Ruby

require 'spec_helper'
describe "Builds" do
before do
@project = FactoryGirl.create :ci_project
@commit = FactoryGirl.create :ci_commit, project: @project
@build = FactoryGirl.create :ci_build, commit: @commit
end
describe "GET /:project/builds/:id/status.json" do
before do
get status_ci_project_build_path(@project, @build), format: :json
end
it { expect(response.status).to eq(200) }
it { expect(response.body).to include(@build.sha) }
end
end