Sha256: e30ee712614fea1cd2b2c6b4597f45ec076e47a1e13ef1e303262c3313dd54ba

Contents?: true

Size: 644 Bytes

Versions: 8

Compression:

Stored size: 644 Bytes

Contents

test_name 'test generic installers'

confine :except, :platform => /^windows|osx/

step 'install arbitrary msi via url' do
  hosts.each do |host|
    if host['platform'].include?('win')
      # this should be implemented at the host/win/pkg.rb level someday
      generic_install_msi_on(host, 'https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.msi', {}, {:debug => true})
    end
  end
end

step 'install arbitrary dmg via url' do
  hosts.each do |host|
    if host['platform'].include?('osx')
      host.generic_install_dmg('https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.dmg', 'Vagrant', 'Vagrant.pkg')
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
beaker-4.42.0 acceptance/tests/install/from_file.rb
beaker-4.41.2 acceptance/tests/install/from_file.rb
beaker-4.41.1 acceptance/tests/install/from_file.rb
beaker-4.41.0 acceptance/tests/install/from_file.rb
beaker-4.40.2 acceptance/tests/install/from_file.rb
beaker-4.40.1 acceptance/tests/install/from_file.rb
beaker-4.40.0 acceptance/tests/install/from_file.rb
beaker-4.39.0 acceptance/tests/install/from_file.rb