Sha256: 87699a0f9ac925d9bc9e24324faf2941880c3b263aabbc0c37f4b9b7a151bb43

Contents?: true

Size: 659 Bytes

Versions: 3

Compression:

Stored size: 659 Bytes

Contents

require "rubygems"
require "rspec/autorun"

# Require Vagrant itself so we can reference the proper
# classes to test.
require "vagrant"
require 'vagrant-parallels'

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

# Load in helpers
require "support/tempdir"
require "unit/support/shared/parallels_context"

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

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

# Configure VAGRANT_CWD so that the tests never find an actual
# Vagrantfile anywhere, or at least this minimizes those chances.
ENV["VAGRANT_CWD"] = Tempdir.new.path

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vagrant-parallels-0.2.1 test/unit/base.rb
vagrant-parallels-0.2.0 test/unit/base.rb
vagrant-parallels-0.1.3 test/unit/base.rb