Sha256: 2ea97200a7eb6a34ccf69ec0be4a16ab9d3d155e549957cebf725956781a68e0

Contents?: true

Size: 395 Bytes

Versions: 1

Compression:

Stored size: 395 Bytes

Contents

describe 'VM RSync' do
  it 'does rsync to the VM' do
    expect(`vagrant up`).to include('Machine is booted and ready for use!')
    expect($?.exitstatus).to eq(0)
    expect(`vagrant ssh -c "ls /vagrant; echo;"`).to include('Vagrantfile.advanced_networking')
    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/rsync/rsync_spec.rb