dohtest 0.1.32 → 0.1.33

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/bin/dohtest +2 -0
  3. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e0f590fb18bde45d6540a526e3c0c903be65ff0
4
- data.tar.gz: bebf0f0f72be1a54efe0b5e8e77cc93939634ead
3
+ metadata.gz: 7e1d71b2979195262ed1ebf4de7729147c70a99a
4
+ data.tar.gz: 312423a6edff5c9e0cf6d3af5d6506d60b4ce78e
5
5
  SHA512:
6
- metadata.gz: 244df9e79b0235ac2a41aa13b030b8ae38462da5937b86a1ab73bdd69b0dbd478e05dcfc7afff01122ec07eeeabdae862812aef635ec0e5b0cd0b6739bf4e29d
7
- data.tar.gz: ce161c00bb03b58ee954d47bafb7354c73eac10f04cabb259e121c8cf0f03db0e36737bfdf0d28aa12cfb02f45366504d1d3582483362742888a0e3fa94f6a81
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.32
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-01 00:00:00.000000000 Z
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.6
88
+ rubygems_version: 2.0.3
89
89
  signing_key:
90
90
  specification_version: 4
91
91
  summary: minimalist unit test framework