spec/opsicle/client_spec.rb in opsicle-0.4.2 vs spec/opsicle/client_spec.rb in opsicle-0.5.0
- old
+ new
@@ -17,10 +17,10 @@
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' },
+ command: { name: 'deploy', args: {} },
stack_id: 'stack',
app_id: 'app'
)
)
subject.run_command('deploy')