2013-02-01 09:41:51 -05:00
|
|
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
2013-09-13 04:32:27 -04:00
|
|
|
require 'capistrano/all'
|
2013-02-01 09:41:51 -05:00
|
|
|
require 'rspec'
|
|
|
|
require 'mocha/api'
|
2014-08-12 14:52:37 -04:00
|
|
|
require 'time'
|
2013-02-01 09:41:51 -05:00
|
|
|
|
|
|
|
# Requires supporting files with custom matchers and macros, etc,
|
|
|
|
# in ./support/ and its subdirectories.
|
|
|
|
Dir['#{File.dirname(__FILE__)}/support/**/*.rb'].each {|f| require f}
|
|
|
|
|
|
|
|
RSpec.configure do |config|
|
2014-08-12 14:52:37 -04:00
|
|
|
config.raise_errors_for_deprecations!
|
2013-02-01 09:41:51 -05:00
|
|
|
config.mock_framework = :mocha
|
|
|
|
config.order = 'random'
|
|
|
|
end
|