dohtest 0.1.34 → 0.1.35

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7da550f7e1385c3963bb3db72303c4aa07f0a26d
4
- data.tar.gz: bdfb15958400ced12dc98d73dba7372ccd9ab0e2
3
+ metadata.gz: 28f7b8e60779b03e962e863ae426f2c63167ec61
4
+ data.tar.gz: 7b8a591cf133d1474ab7e4b665e3ae096c6f7639
5
5
  SHA512:
6
- metadata.gz: 07a2fc71b1fab1394e7c2ab00e1c13d4696aa9e4020d27e29145822dfeceefbf11e7fd6a18cb48d7f99ff873176ababaa2971eefc50d5f5728430a6488a4daed
7
- data.tar.gz: 60f37ec69272a59ea4825edc5739083a73df622a199ad0bc994c7a4d267d9c2c3764a5929de0388238894a996615bd69fb778f848bb1bb76f06dd3a696b8d23c
6
+ metadata.gz: 19af16620fa3313a27d0de0fe19abf5a0eef99cc338a27cf669ffe82a7cf2d40ee729832bccefa91887422ca23b940a4d84d8aac4c2d6d5bbc01ed2abf4b4cee
7
+ data.tar.gz: 916440c5a584cf4250f45641b27af47d98e01050d220ee9ddcdca50857e381f3f75a1d186cae8a71e738a28ea873634aca4487fceb66445f80f8ad91ebafa085
data/bin/dohtest CHANGED
@@ -11,7 +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
+ 'config_options' => [0, '-o', '--options <string>', "options to set in DohTest.config[:config_options]"],
15
15
  }, true, 'Files or directories may be specified to run tests on. Directories will be treated recursively. Defaults to the current directory.')
16
16
 
17
17
  #generates ruby warnings -- equivalent to ruby -v
@@ -22,7 +22,7 @@ class MasterRunner
22
22
  srand(@config[:seed])
23
23
  @output.run_begin(@config)
24
24
  total_problems = 0
25
- TestGroup.descendants.each do |group_class|
25
+ TestGroup.descendants.shuffle.each do |group_class|
26
26
  runner = GroupRunner.new(group_class, @output, @config)
27
27
  brink_hit = runner.run
28
28
  total_problems += runner.total_problems
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.34
4
+ version: 0.1.35
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-14 00:00:00.000000000 Z
12
+ date: 2013-11-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: dohroot