oga/spec/support/simplecov.rb

17 lines
322 B
Ruby
Raw Normal View History

2014-02-26 18:50:16 +00:00
require 'simplecov'
SimpleCov.configure do
root File.expand_path('../../../', __FILE__)
command_name 'rspec'
project_name 'oga'
add_filter 'spec'
add_filter 'lib/oga/version'
add_group 'XML', 'lib/oga/xml'
add_group 'HTML', 'lib/oga/html'
add_group 'XPath', 'lib/oga/xpath'
2014-02-26 18:50:16 +00:00
end
SimpleCov.start