mirror of
https://github.com/inspec/inspec
synced 2024-11-10 07:04:15 +00:00
add simplecov
Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
parent
72570aea01
commit
98fcbb5231
2 changed files with 10 additions and 0 deletions
|
@ -2,6 +2,15 @@
|
|||
|
||||
require 'minitest/autorun'
|
||||
require 'minitest/spec'
|
||||
|
||||
require 'simplecov'
|
||||
SimpleCov.start do
|
||||
add_filter '/test/'
|
||||
add_group 'Resources', 'lib/resources'
|
||||
add_group 'Matchers', 'lib/matchers'
|
||||
add_group 'Backends', 'lib/vulcano/backend'
|
||||
end
|
||||
|
||||
require 'vulcano/backend'
|
||||
|
||||
# loads a resource class and instantiates the class with the given arguments
|
||||
|
|
|
@ -24,6 +24,7 @@ Gem::Specification.new do |spec|
|
|||
spec.add_development_dependency 'rake', '~> 10'
|
||||
spec.add_development_dependency 'pry', '~> 0.10'
|
||||
spec.add_development_dependency 'rubocop', '~> 0.33.0'
|
||||
spec.add_development_dependency 'simplecov', '~> 0.10'
|
||||
|
||||
spec.add_dependency 'thor', '~> 0.19'
|
||||
spec.add_dependency 'json', '~> 1.8'
|
||||
|
|
Loading…
Reference in a new issue