Sha256: 4dc329a8e2a7d95e5e2e4e362ec5414eaab8fd649371ed46a01d9621111667ac
Contents?: true
Size: 1.88 KB
Versions: 7
Compression:
Stored size: 1.88 KB
Contents
require 'spec_helper' require 'simple_deploy/cli' describe SimpleDeploy::CLI::Attributes do describe 'show' do before do @config = mock 'config' @logger = stub 'logger' @options = { :environment => 'my_env', :log_level => 'debug', :name => 'my_stack' } @stack = stub :attributes => { 'foo' => 'bar', 'baz' => 'blah' } SimpleDeploy::Config.stub(:new).and_return(@config) @config.should_receive(:environment).with('my_env').and_return(@config) SimpleDeploy::SimpleDeployLogger.should_receive(:new). with(:log_level => 'debug'). and_return(@logger) SimpleDeploy::Stack.should_receive(:new). with(:config => @config, :environment => 'my_env', :logger => @logger, :name => 'my_stack'). and_return(@stack) end it 'should output the attributes' do subject.should_receive(:valid_options?). with(:provided => @options, :required => [:environment, :name]) Trollop.stub(:options).and_return(@options) subject.should_receive(:puts).with('foo: bar') subject.should_receive(:puts).with('baz: blah') subject.show end context 'with --as-command-args' do before do @options[:as_command_args] = true Trollop.stub(:options).and_return(@options) subject.should_receive(:valid_options?). with(:provided => @options, :required => [:environment, :name]) end it 'should output the attributes as command arguments' do subject.should_receive(:puts).with("-a baz=blah -a foo=bar") subject.show end end end end
Version data entries
7 entries across 7 versions & 1 rubygems