diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-13 10:00:31 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-13 16:00:31 +0200 |
commit | b330d1f000ef354a856c43aeaa27e079c89fc822 (patch) | |
tree | f0d15315a6d13781f1429c8ffe126fcc908339c3 /spec | |
parent | 447b8bc44eb33ae6ffdfbcc7ae52fbe0bba93ece (diff) |
Organize coverage dirs (#1695)
* Add `Presenters` group to SimpleCov configuration * Move validators to app/validators, add to simplecov config
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index a5dce977d..7038efce1 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,7 +1,9 @@ require 'simplecov' SimpleCov.start 'rails' do - add_group "Services", "app/services" + add_group 'Services', 'app/services' + add_group 'Presenters', 'app/presenters' + add_group 'Validators', 'app/validators' end RSpec.configure do |config| |