add simplecov

Signed-off-by: Dominik Richter <dominik.richter@gmail.com>
This commit is contained in:
Dominik Richter 2015-09-04 20:24:38 +02:00
parent 72570aea01
commit 98fcbb5231
2 changed files with 10 additions and 0 deletions

View file

@ -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

View file

@ -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'