Sha256: b2d0653c876b1a9da2744f7896630955230412664fef90c3f974fdeab4b81e9e
Contents?: true
Size: 750 Bytes
Versions: 45
Compression:
Stored size: 750 Bytes
Contents
# Add this folder to the load path for "test_helper" $:.unshift(File.dirname(__FILE__)) require 'vagrant' require 'contest' require 'mocha' # Try to load ruby debug since its useful if it is available. # But not a big deal if its not available (probably on a non-MRI # platform) begin require 'ruby-debug' rescue LoadError end # Do not buffer output for tests $stdout.sync = true $stderr.sync = true # Set the home directory to some temporary directory ENV["HOME"] = Vagrant.source_root.join("test", "tmp", "home").to_s # Set the log output to nothing ENV["VAGRANT_LOG"] = "NULL" # Add the I18n locale for tests I18n.load_path << File.expand_path("../locales/en.yml", __FILE__) class Test::Unit::TestCase include Vagrant::TestHelpers end
Version data entries
45 entries across 45 versions & 6 rubygems