gitlab-org--gitlab-foss/spec/services/ci/update_cluster_service_spec.rb
2017-10-04 22:40:12 +09:00

17 lines
316 B
Ruby

require 'spec_helper'
describe Ci::UpdateClusterService do
describe '#execute' do
context 'when correct params' do
it 'updates the cluster and the service' do
end
end
context 'when invalid params' do
it 'returns a cluster object with error' do
end
end
end
end