Sha256: 20fecf1c5ecc18e5756bee46b0052cd61f68b0764a4b94773ff457db2c4c059b

Contents?: true

Size: 743 Bytes

Versions: 1

Compression:

Stored size: 743 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

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-cloudstack-1.3.0 functional-tests/basic/basic_spec.rb