Sha256: 4e92b7d3847e7d224d8184d2b08174a24f7e8e88014bc52ae207043889a419aa
Contents?: true
Size: 1.33 KB
Versions: 19
Compression:
Stored size: 1.33 KB
Contents
require 'spec_helper' module Convection::Control describe Stack do let(:template) do Convection.template do description 'EC2 VPC Test Template' ec2_vpc 'TargetVPC' do network '10.0.0.0' subnet_length 24 enable_dns end end end describe 'after create tasks' do include_context 'with a CollectAvailabilityZonesTask defined' include_context 'with a mock CloudFormation client' include_context 'with a mock EC2 client' before do allow(Aws::CloudFormation::Client).to receive(:new).and_return(cf_client) allow(Aws::EC2::Client).to receive(:new).and_return(ec2_client) end let(:task) { CollectAvailabilityZonesTask.new } subject do scope = self Convection::Control::Stack.new('EC2 VPC Test Stack', template) do after_create_task scope.task end end it 'is registered after Stack#apply is called' do expect(subject.tasks[:after_create]).to_not be_empty end it 'is executed on Stack#apply' do subject.apply expect(task.availability_zones).to include('eu-central-1') end it 'is deregistered after Stack#apply is called' do subject.apply expect(subject.tasks[:after_create]).to be_empty end end end end
Version data entries
19 entries across 19 versions & 1 rubygems