Sha256: f200d85af04cae43cd327f74ff45c295ed350a134d660ead93dc7085aa03096f

Contents?: true

Size: 1.31 KB

Versions: 59

Compression:

Stored size: 1.31 KB

Contents

require "rubygems"
require "rspec/autorun"

require "log4r"

# Add the test directory to the load path
$:.unshift File.expand_path("../../", __FILE__)

# Load in the supporting files for our tests
require "acceptance/support/shared/base_context"
require "acceptance/support/config"
require "acceptance/support/virtualbox"
require "acceptance/support/matchers/match_output"
require "acceptance/support/matchers/succeed"

# Do not buffer output
$stdout.sync = true
$stderr.sync = true

# If VirtualBox is currently running, fail.
if Acceptance::VirtualBox.find_vboxsvc
  $stderr.puts "VirtualBox must be closed and remain closed for the duration of the tests."
  abort
end

# Enable logging if requested
if ENV["ACCEPTANCE_LOG"]
  logger = Log4r::Logger.new("test")
  logger.outputters = Log4r::Outputter.stdout
  logger.level = Log4r.const_get(ENV["ACCEPTANCE_LOG"].upcase)
  logger = nil
end

# Parse the command line options and load the global configuration.
if !ENV.has_key?("ACCEPTANCE_CONFIG")
  $stderr.puts "A configuration file must be passed into the acceptance test."
  abort
elsif !File.file?(ENV["ACCEPTANCE_CONFIG"])
  $stderr.puts "The configuration file must exist."
  abort
end

$acceptance_options = Acceptance::Config.new(ENV["ACCEPTANCE_CONFIG"])

# Configure RSpec
RSpec.configure do |c|
  c.expect_with :rspec, :stdlib
end

Version data entries

59 entries across 59 versions & 11 rubygems

Version Path
tamtam-vagrant-reload-1.1.3 vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb
tamtam-vagrant-reload-1.1.2 vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb
tamtam-vagrant-reload-1.1.1 vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb
tamtam-vagrant-reload-1.1 vendor/cache/vagrant-0ac2a8738841/test/acceptance/base.rb
bmhatfield-vagrant-1.0.10 test/acceptance/base.rb
bmhatfield-vagrant-1.0.9 test/acceptance/base.rb
tnargav-1.3.6 test/acceptance/base.rb
tnargav-1.3.3 test/acceptance/base.rb
bmhatfield-vagrant-1.0.8 test/acceptance/base.rb
vagrant-shell-0.2.9 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/test/acceptance/base.rb
tnargav-1.2.3 test/acceptance/base.rb
vagrant-shell-0.2.8 demo/templates/vendor/bundle/ruby/1.9.1/gems/tnargav-1.2.2/test/acceptance/base.rb
bmhatfield-vagrant-1.0.7 test/acceptance/base.rb
vagrant-shell-0.2.6 vendor/bundle/gems/tnargav-1.2.2/test/acceptance/base.rb
vagrant-shell-0.2.5 vendor/bundle/gems/tnargav-1.2.2/test/acceptance/base.rb
tnargav-1.2.2 test/acceptance/base.rb
vagrantup-1.1.3 test/acceptance/base.rb
vagrantup-1.1.2 test/acceptance/base.rb
vagrantup-1.1.1 test/acceptance/base.rb
vagrantup-1.1.0 test/acceptance/base.rb