vagrant-lxc-ng/spec/spec_helper.rb

36 lines
908 B
Ruby
Raw Permalink Normal View History

2013-02-28 03:06:29 +00:00
if ENV['COVERAGE']
require 'simplecov'
2013-04-12 21:29:03 +00:00
require 'coveralls'
2013-04-20 20:38:01 +00:00
SimpleCov.start { add_filter '/spec/' }
SimpleCov.merge_timeout 300
2013-02-28 03:06:29 +00:00
end
require 'bundler/setup'
2013-02-28 03:06:29 +00:00
2013-03-27 00:48:41 +00:00
require 'i18n'
require 'vagrant-lxc'
2013-02-28 03:06:29 +00:00
2013-03-02 00:20:11 +00:00
Dir[File.dirname(__FILE__) + "/support/**/*.rb"].each { |f| require f }
2013-02-28 03:06:29 +00: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'
config.mock_with :rspec do |c|
c.yield_receiver_to_any_instance_implementation_blocks = true
end
2014-03-21 22:31:34 +00:00
config.expect_with :rspec do |c|
c.syntax = :expect
end
config.raise_errors_for_deprecations!
2013-02-28 03:06:29 +00:00
end