File: simplecov

package info (click to toggle)
ruby-encryptor 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 200 kB
  • sloc: ruby: 450; makefile: 4
file content (46 lines) | stat: -rw-r--r-- 1,152 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
Description: Disable simplecov
 Disable simplecov while running tests
Author: Sudheesh Shetty <sudheeshshetty@gmail.com>
		Balasankar C <balasankarc@autistici.org>
Forwarded: not-needed
Last-Update: 2016-03-18
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,19 +1,19 @@
-require 'simplecov'
-require 'simplecov-rcov'
-require "codeclimate-test-reporter"
-
-SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
-  SimpleCov::Formatter::HTMLFormatter,
-  SimpleCov::Formatter::RcovFormatter,
-  CodeClimate::TestReporter::Formatter
-]
-
-SimpleCov.start do
-  add_filter 'test'
-end
-
-CodeClimate::TestReporter.start
-
+#require 'simplecov'
+#require 'simplecov-rcov'
+#require "codeclimate-test-reporter"
+#
+#SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
+#  SimpleCov::Formatter::HTMLFormatter,
+#  SimpleCov::Formatter::RcovFormatter,
+#  CodeClimate::TestReporter::Formatter
+#]
+#
+#SimpleCov.start do
+#  add_filter 'test'
+#end
+#
+#CodeClimate::TestReporter.start
+#
 require 'minitest/autorun'
 require 'minitest/unit'
 require 'digest/sha2'