Sha256: a6884fc0239c66bc41e0c2952155fbfc80f182de2bc83adc9c689c808cbaa487
Contents?: true
Size: 337 Bytes
Versions: 68
Compression:
Stored size: 337 Bytes
Contents
RSpec.shared_context 'with a mock CloudFormation client' do let(:cf_client) do client = double(:cf_client, create_stack: nil, delete_stack: nil, update_stack: nil) allow(client).to receive(:describe_stacks) { fail Aws::CloudFormation::Errors::ValidationError.new(nil, 'Stack does not exist.') } client end end
Version data entries
68 entries across 68 versions & 1 rubygems