2015-09-25 12:07:36 +05:30
|
|
|
# == Schema Information
|
|
|
|
#
|
2015-11-26 14:37:03 +05:30
|
|
|
# Table name: ci_services
|
2015-09-25 12:07:36 +05:30
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
|
|
|
# project_id :integer not null
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
|
|
|
#
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Ci::Service do
|
|
|
|
|
|
|
|
describe "Associations" do
|
|
|
|
it { is_expected.to belong_to :project }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Mass assignment" do
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Test Button" do
|
|
|
|
before do
|
|
|
|
@service = Ci::Service.new
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Testable" do
|
2015-10-24 18:46:33 +05:30
|
|
|
let(:commit) { FactoryGirl.create :ci_commit }
|
2015-09-25 12:07:36 +05:30
|
|
|
let(:build) { FactoryGirl.create :ci_build, commit: commit }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(@service).to receive_messages(
|
2015-10-24 18:46:33 +05:30
|
|
|
project: commit.project
|
2015-09-25 12:07:36 +05:30
|
|
|
)
|
|
|
|
build
|
|
|
|
@testable = @service.can_test?
|
|
|
|
end
|
|
|
|
|
|
|
|
describe :can_test do
|
|
|
|
it { expect(@testable).to eq(true) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|