Sha256: 95bb78336f5943f4c76c3582f3eb4bc66bbc8a000f7fedc9c068cb0f82bba57a
Contents?: true
Size: 715 Bytes
Versions: 123
Compression:
Stored size: 715 Bytes
Contents
require 'spec_helper' describe CF::Service::Unbind do describe 'metadata' do let(:command) { Mothership.commands[:unbind_service] } describe 'command' do subject { command } its(:description) { should eq "Unbind a service from an application" } 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 }, { :type => :optional, :value => nil, :name => :app } ]) end end end end
Version data entries
123 entries across 123 versions & 2 rubygems