34 lines
793 B
Ruby
34 lines
793 B
Ruby
begin
|
|
require File.join(File.dirname(__FILE__), '..', 'vendor', 'gems', 'environment')
|
|
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
|
|
|
|
# ruby-debug, not necessary, but useful if we have it
|
|
begin
|
|
require 'ruby-debug'
|
|
rescue LoadError; end
|
|
|
|
require File.join(File.dirname(__FILE__), '..', 'lib', 'hobo')
|
|
require 'contest'
|
|
require 'mocha'
|
|
|
|
HOBO_MOCK_CONFIG =
|
|
{ :ssh =>
|
|
{
|
|
:uname => 'foo',
|
|
:pass => 'bar',
|
|
:host => 'baz',
|
|
:port => 'bak'
|
|
}
|
|
}
|