1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Remove usage of coveralls and simplecov
Author: Balasankar C <balasankarc@autistici.org>
Last-Update: 2017-07-26
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -1,14 +1,3 @@
-require 'simplecov'
-require 'coveralls'
-
-SimpleCov.formatters = [SimpleCov::Formatter::HTMLFormatter, Coveralls::SimpleCov::Formatter]
-
-SimpleCov.start do
- add_filter '/bundle/'
- add_filter '/test/'
- minimum_coverage(87)
-end
-
gem 'minitest' if defined? Bundler
require 'minitest/autorun'
|