Sha256: acdde9342fe1bc408490a75a364e5e7822bc91273edfb7ceb194cf2564224713

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 KB

Contents

require 'spec_helper'
require 'simple_deploy/cli'

describe SimpleDeploy::CLI::Destroy do
  include_context 'cli config'
  include_context 'double stubbed logger'
  include_context 'stubbed stack', :name        => 'my_stack',
                                   :environment => 'my_env'

  describe 'destroy' do
    before do
      @options = { :environment => 'my_env',
                   :log_level   => 'debug',
                   :name        => 'my_stack' }
      @required = [:environment, :name, :read_from_env]
      @stack_mock.stub(:attributes).and_return({})
    end

    it "should exit with 0" do
      subject.should_receive(:valid_options?).
              with(:provided => @options, :required => @required)
      Trollop.stub(:options).and_return(@options)

      @stack_mock.should_receive(:destroy).and_return(true)

      begin
        subject.destroy
      rescue SystemExit => e
        e.status.should == 0
      end
    end

    it "should exit with 1" do
      subject.should_receive(:valid_options?).
              with(:provided => @options, :required => @required)
      Trollop.stub(:options).and_return(@options)

      @stack_mock.should_receive(:destroy).and_return(false)

      begin
        subject.destroy
      rescue SystemExit => e
        e.status.should == 1
      end
    end
  end 
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_deploy-0.10.2 spec/cli/destroy_spec.rb
simple_deploy-0.10.1 spec/cli/destroy_spec.rb
simple_deploy-0.10.0 spec/cli/destroy_spec.rb
simple_deploy-0.10.0.beta.3 spec/cli/destroy_spec.rb
simple_deploy-0.10.0.beta.2 spec/cli/destroy_spec.rb
simple_deploy-0.10.0.beta.1 spec/cli/destroy_spec.rb