2013-02-28 00:06:29 -03:00
|
|
|
if ENV['COVERAGE']
|
|
|
|
require 'simplecov'
|
2013-04-12 18:29:03 -03:00
|
|
|
require 'coveralls'
|
|
|
|
|
2013-04-20 17:38:01 -03:00
|
|
|
SimpleCov.start { add_filter '/spec/' }
|
|
|
|
SimpleCov.merge_timeout 300
|
2013-02-28 00:06:29 -03:00
|
|
|
end
|
|
|
|
|
2013-03-14 22:39:57 -03:00
|
|
|
require 'bundler/setup'
|
2013-02-28 00:06:29 -03:00
|
|
|
|
2013-03-26 21:48:41 -03:00
|
|
|
require 'i18n'
|
|
|
|
|
2014-03-14 11:34:46 -03:00
|
|
|
require 'vagrant-lxc'
|
2013-02-28 00:06:29 -03:00
|
|
|
|
2013-03-01 21:20:11 -03:00
|
|
|
Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |f| require f }
|
2013-02-28 00:06:29 -03:00
|
|
|
|
|
|
|
RSpec.configure do |config|
|
|
|
|
config.treat_symbols_as_metadata_keys_with_true_values = true
|
|
|
|
config.run_all_when_everything_filtered = true
|
|
|
|
config.filter_run :focus
|
|
|
|
|
|
|
|
# Run specs in random order to surface order dependencies. If you find an
|
|
|
|
# order dependency and want to debug it, you can fix the order by providing
|
|
|
|
# the seed, which is printed after each run.
|
|
|
|
# --seed 1234
|
|
|
|
config.order = 'random'
|
2014-03-14 11:37:50 -03:00
|
|
|
|
|
|
|
config.mock_with :rspec do |c|
|
|
|
|
c.yield_receiver_to_any_instance_implementation_blocks = true
|
|
|
|
end
|
2014-03-21 19:31:34 -03:00
|
|
|
config.expect_with :rspec do |c|
|
|
|
|
c.syntax = :expect
|
|
|
|
end
|
|
|
|
config.raise_errors_for_deprecations!
|
2013-02-28 00:06:29 -03:00
|
|
|
end
|