vagrant-lxc-ng/spec/spec_helper.rb

40 lines
1,009 B
Ruby
Raw 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'
2013-02-28 03:06:29 +00:00
require 'rspec-spies'
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
# If we should verify constant names, eager loads
if ENV['VERIFY_CONSTANT_NAMES']
require 'vagrant-lxc/plugin'
require 'vagrant-lxc/provider'
2013-04-06 01:08:02 +00:00
require 'vagrant-lxc/config'
end
require 'rspec/fire'
RSpec::Fire.configure do |config|
config.verify_constant_names = ENV['VERIFY_CONSTANT_NAMES'] == '1'
end
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'
end