Sha256: 32165cd3fea4bff47a2986b24eb99cda2c14721ae16e5e433cee497c5f796527

Contents?: true

Size: 443 Bytes

Versions: 1

Compression:

Stored size: 443 Bytes

Contents

describe 'VM Life Cycle' do
  it 'starts Linux and Windows VM' do
    expect(`vagrant up`).to include(
      'linux-box: Machine is booted and ready for use!',
      'windows-box: Machine is booted and ready for use!'
    )
    expect($?.exitstatus).to eq(0)
  end
  it 'destroys Linux and Windows VM' do
    expect(`vagrant destroy --force`).to include('Terminating the instance...')
    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/vmlifecycle/vmlifecycle_spec.rb