dohtest 0.1.33 → 0.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/dohtest +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7da550f7e1385c3963bb3db72303c4aa07f0a26d
|
|
4
|
+
data.tar.gz: bdfb15958400ced12dc98d73dba7372ccd9ab0e2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07a2fc71b1fab1394e7c2ab00e1c13d4696aa9e4020d27e29145822dfeceefbf11e7fd6a18cb48d7f99ff873176ababaa2971eefc50d5f5728430a6488a4daed
|
|
7
|
+
data.tar.gz: 60f37ec69272a59ea4825edc5739083a73df622a199ad0bc994c7a4d267d9c2c3764a5929de0388238894a996615bd69fb778f848bb1bb76f06dd3a696b8d23c
|
data/bin/dohtest
CHANGED
|
@@ -19,6 +19,7 @@ $VERBOSE = true unless opts.quiet
|
|
|
19
19
|
|
|
20
20
|
paths = opts.varargs
|
|
21
21
|
|
|
22
|
+
DohTest.config[:config_options] = opts.config_options
|
|
22
23
|
DohTest.configure(paths.first)
|
|
23
24
|
DohTest.config[:grep] = opts.grep if opts.grep
|
|
24
25
|
DohTest.config[:glob] = opts.glob if opts.glob
|
|
@@ -28,6 +29,5 @@ DohTest.config[:verbose] = true if opts.verbose
|
|
|
28
29
|
DohTest.config[:quiet] = true if opts.quiet
|
|
29
30
|
DohTest.config[:max_errors] = opts.max_errors
|
|
30
31
|
DohTest.config[:max_failures] = opts.max_failures
|
|
31
|
-
DohTest.config[:config_options] = opts.config_options
|
|
32
32
|
|
|
33
33
|
exit DohTest::MasterRunner.new(DohTest::StreamOutput.new, DohTest.config, paths).run
|