From 8c75f74ca5f97dbb89a089264a011664b386714d Mon Sep 17 00:00:00 2001 From: evazion Date: Sat, 4 Feb 2017 21:28:33 -0600 Subject: [PATCH] tests: update simplecov config. --- test/test_helper.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index cbd9ec19b..cf155a94d 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -3,10 +3,8 @@ ENV["RAILS_ENV"] = "test" if ENV["SIMPLECOV"] require 'simplecov' SimpleCov.start 'rails' do - add_filter ".bundle" - add_filter "script/" - add_filter "test/" - add_filter "config/" + add_group "Libraries", ["app/logical", "lib"] + add_group "Presenters", "app/presenters" end end