vagrant-lxc-ng/spec/spec_helper.rb

28 lines
705 B
Ruby
Raw Normal View History

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
require 'bundler/setup'
2013-02-28 00:06:29 -03:00
2013-03-26 21:48:41 -03:00
require 'i18n'
require 'vagrant-lxc/plugin'
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'
end