Sha256: a255b9fc483b20ad0ac8c1f52c8c3351cc1e44976c9d5b21e5e2239f15b4eedd
Contents?: true
Size: 934 Bytes
Versions: 2
Compression:
Stored size: 934 Bytes
Contents
require "spec_helper" require "opsicle/client" module Opsicle describe Client do subject { Client.new('derp') } let(:aws_client) { double } let(:config) { double } before do ow_stub = double allow(config).to receive(:opsworks_config).and_return({ stack_id: 'stack', app_id: 'app' }) allow(ow_stub).to receive(:client).and_return(aws_client) allow(Config).to receive(:new).and_return(config) allow(AWS::OpsWorks).to receive(:new).and_return(ow_stub) end context "#run_command" do it "calls out to the aws client with all the config options" do expect(config).to receive(:configure_aws!) expect(aws_client).to receive(:create_deployment).with( hash_including( command: { name: 'deploy' }, stack_id: 'stack', app_id: 'app' ) ) subject.run_command('deploy') end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
opsicle-0.2.1 | spec/opsicle/client_spec.rb |
opsicle-0.2.0 | spec/opsicle/client_spec.rb |