Sha256: 90ec212d6088bbe9853bf754054a1f61746bbeda952e5a64ca9a567dca301d9d

Contents?: true

Size: 632 Bytes

Versions: 16

Compression:

Stored size: 632 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|
    host.generic_install_dmg('https://releases.hashicorp.com/vagrant/1.8.4/vagrant_1.8.4.dmg', 'Vagrant', 'Vagrant.pkg') if host['platform'].include?('osx')
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
beaker-6.4.1 acceptance/tests/install/from_file.rb
beaker-6.4.0 acceptance/tests/install/from_file.rb
beaker-6.3.0 acceptance/tests/install/from_file.rb
beaker-6.2.0 acceptance/tests/install/from_file.rb
beaker-6.1.0 acceptance/tests/install/from_file.rb
beaker-5.8.1 acceptance/tests/install/from_file.rb
beaker-5.8.0 acceptance/tests/install/from_file.rb
beaker-5.7.0 acceptance/tests/install/from_file.rb
beaker-5.6.0 acceptance/tests/install/from_file.rb
beaker-5.5.0 acceptance/tests/install/from_file.rb
beaker-5.4.0 acceptance/tests/install/from_file.rb
beaker-5.3.1 acceptance/tests/install/from_file.rb
beaker-5.3.0 acceptance/tests/install/from_file.rb
beaker-5.2.0 acceptance/tests/install/from_file.rb
beaker-5.1.0 acceptance/tests/install/from_file.rb
beaker-5.0.0 acceptance/tests/install/from_file.rb