17 lines
316 B
Ruby
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
|