docile/spec/spec_helper.rb

28 lines
916 B
Ruby

require File.expand_path('on_what', File.dirname(File.dirname(__FILE__)))
begin
require 'simplecov'
SimpleCov.start do
add_filter '/spec/' # exclude test code
add_filter '/vendor/' # exclude gems which are vendored on Travis CI
end
# On CI, for Ruby 1.9+, we publish simplecov results to codecov.io
if on_travis? && !on_1_8?
require 'codecov'
SimpleCov.formatter = SimpleCov::Formatter::Codecov
end
# Due to circular dependency (simplecov depends on docile), remove and require again below
Object.send(:remove_const, :Docile)
$LOADED_FEATURES.reject! { |f| f =~ /\/docile\// }
rescue LoadError
warn 'warning: simplecov or codecov gems not found; skipping coverage'
end
lib_dir = File.join(File.dirname(File.dirname(__FILE__)), 'lib')
$LOAD_PATH.unshift lib_dir unless $LOAD_PATH.include? lib_dir
# Require Docile again, now with coverage enabled on 1.9+
require 'docile'