a237999f00
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
48 lines
1,001 B
Ruby
48 lines
1,001 B
Ruby
# == Schema Information
|
|
#
|
|
# Table name: ci_services
|
|
#
|
|
# 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
|
|
let(:commit) { FactoryGirl.create :ci_commit }
|
|
let(:build) { FactoryGirl.create :ci_build, commit: commit }
|
|
|
|
before do
|
|
allow(@service).to receive_messages(
|
|
project: commit.project
|
|
)
|
|
build
|
|
@testable = @service.can_test?
|
|
end
|
|
|
|
describe :can_test do
|
|
it { expect(@testable).to eq(true) }
|
|
end
|
|
end
|
|
end
|
|
end
|