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'
|
|
|
|
|
|
|
|
# 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|
|
2013-06-16 08:08:15 -04:00
|
|
|
config.treat_symbols_as_metadata_keys_with_true_values = true
|
2013-02-01 09:41:51 -05:00
|
|
|
config.mock_framework = :mocha
|
|
|
|
config.order = 'random'
|
|
|
|
end
|