mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
15 lines
436 B
Ruby
15 lines
436 B
Ruby
|
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
||
|
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
||
|
require 'rspec'
|
||
|
require 'capistrano'
|
||
|
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|
|
||
|
config.mock_framework = :mocha
|
||
|
config.order = 'random'
|
||
|
end
|