vagrant/test/test_helper.rb

50 lines
1.2 KiB
Ruby
Raw Normal View History

begin
2010-01-22 05:08:55 +00:00
require File.join(File.dirname(__FILE__), '..', 'vendor', 'gems', 'environment')
2010-01-22 05:07:01 +00:00
rescue LoadError
puts <<-ENVERR
==================================================
ERROR: Gem environment file not found!
Hobo uses bundler to handle gem dependencies. To setup the
test environment, please run `gem bundle test` If you don't
have bundler, you can install that with `gem install bundler`
==================================================
ENVERR
exit
end
2010-01-30 04:40:43 +00:00
# This silences logger output
ENV['HOBO_ENV'] = 'test'
2010-01-22 05:36:34 +00:00
# ruby-debug, not necessary, but useful if we have it
begin
require 'ruby-debug'
rescue LoadError; end
2010-01-22 05:54:23 +00:00
require File.join(File.dirname(__FILE__), '..', 'lib', 'hobo')
require 'contest'
require 'mocha'
2010-01-26 08:01:17 +00:00
class Test::Unit::TestCase
def hobo_mock_config
2010-02-02 06:14:40 +00:00
Hobo::Config.instance_variable_set(:@config_runners, nil)
Hobo::Config.instance_variable_set(:@config, nil)
Hobo::Config.run do |config|
config.dotfile_name = ".hobo"
config.ssh.uname = "foo"
config.ssh.pass = "bar"
config.ssh.host = "baz"
config.ssh.port = "bak"
config.ssh.max_tries = 10
config.vm.base = "foo"
config.vm.base_mac = "42"
end
Hobo::Config.execute!
end
end