10 lines
146 B
Ruby
10 lines
146 B
Ruby
require 'simplecov'
|
|
|
|
SimpleCov.configure do
|
|
load_profile 'test_frameworks'
|
|
end
|
|
|
|
ENV['COVERAGE'] && SimpleCov.start do
|
|
add_filter '/.rvm/'
|
|
end
|