Sha256: 910a81d5a41c11c99b5d73a486d4b22f29509205b10933a27dda076d4ca9581f
Contents?: true
Size: 610 Bytes
Versions: 30
Compression:
Stored size: 610 Bytes
Contents
require 'spec_helper' describe VMC::Service::Delete do describe 'metadata' do let(:command) { Mothership.commands[:delete_service] } describe 'command' do subject { command } its(:description) { should eq "Delete a service" } it { expect(Mothership::Help.group(:services, :manage)).to include(subject) } end include_examples 'inputs must have descriptions' describe 'arguments' do subject { command.arguments } it 'has the correct argument order' do should eq([{:type => :optional, :value => nil, :name => :service }]) end end end end
Version data entries
30 entries across 30 versions & 3 rubygems