Sha256: d907e012603ad0f7ca947ead4b16cac7905210680a28046e0c899170770518f8
Contents?: true
Size: 722 Bytes
Versions: 4
Compression:
Stored size: 722 Bytes
Contents
describe 'Basic Network' do it 'starts Linux VM with security groups' do expect(`vagrant up`).to include( 'Security Group Awesome_security_group1 created with ID', 'Security Group Awesome_security_group2 created with ID', 'Security Group: Awesome_security_group1 (', 'Security Group: Awesome_security_group2 (', 'Network name or id will be ignored', 'Machine is booted and ready for use!' ) expect($?.exitstatus).to eq(0) end it 'destroys Linux with security groups' do expect(`vagrant destroy --force`).to include( 'Terminating the instance...', 'Deleted ingress rules', 'Deleted egress rules' ) expect($?.exitstatus).to eq(0) end end
Version data entries
4 entries across 4 versions & 1 rubygems