dohtest 0.1.32 → 0.1.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/dohtest +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e1d71b2979195262ed1ebf4de7729147c70a99a
|
4
|
+
data.tar.gz: 312423a6edff5c9e0cf6d3af5d6506d60b4ce78e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c14c8eca99c4229deab6fe9a0fd507497b7260aaac065779f03db3a0f785fe69aa1ae2b8af4f8ab2acf449a50f65fea1c62442751dc654cb49d249ff50426b95
|
7
|
+
data.tar.gz: 4dfd8b6e74d1047e0565de43d384b643bd3207e805e0684098a29ec528d42acadf06eb54e4fbd328cacbf774b1717e3deb4d99d7615bba74126175142470884f
|
data/bin/dohtest
CHANGED
@@ -11,6 +11,7 @@ opts = Doh::Options.new({
|
|
11
11
|
'quiet' => [nil, '-q', '--quiet', "use this to generate less output, disables ruby -v mode (which is default) "],
|
12
12
|
'max_errors' => [0, '-e', '--max_errors', "stop tests after this many unexpected errors have happened; disabled by default"],
|
13
13
|
'max_failures' => [0, '-f', '--max_failures', "stop tests after this many assertion failures have happened; disabled by default"],
|
14
|
+
'config_options' => [0, '-o', '--options <string>', "options to pass through to child dohtest.rb"],
|
14
15
|
}, true, 'Files or directories may be specified to run tests on. Directories will be treated recursively. Defaults to the current directory.')
|
15
16
|
|
16
17
|
#generates ruby warnings -- equivalent to ruby -v
|
@@ -27,5 +28,6 @@ DohTest.config[:verbose] = true if opts.verbose
|
|
27
28
|
DohTest.config[:quiet] = true if opts.quiet
|
28
29
|
DohTest.config[:max_errors] = opts.max_errors
|
29
30
|
DohTest.config[:max_failures] = opts.max_failures
|
31
|
+
DohTest.config[:config_options] = opts.config_options
|
30
32
|
|
31
33
|
exit DohTest::MasterRunner.new(DohTest::StreamOutput.new, DohTest.config, paths).run
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dohtest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Makani Mason
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-11-
|
12
|
+
date: 2013-11-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: dohroot
|
@@ -85,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
version: '0'
|
86
86
|
requirements: []
|
87
87
|
rubyforge_project:
|
88
|
-
rubygems_version: 2.0.
|
88
|
+
rubygems_version: 2.0.3
|
89
89
|
signing_key:
|
90
90
|
specification_version: 4
|
91
91
|
summary: minimalist unit test framework
|