oktest 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/Rakefile.rb +1 -1
- data/lib/oktest.rb +3 -4
- data/oktest.gemspec +2 -2
- data/test/assertion_test.rb +1 -1
- data/test/filter_test.rb +1 -1
- data/test/fixture_test.rb +1 -1
- data/test/generator_test.rb +1 -1
- data/test/helper_test.rb +1 -1
- data/test/initialize.rb +1 -1
- data/test/mainapp_test.rb +13 -2
- data/test/matcher_test.rb +1 -1
- data/test/misc_test.rb +1 -1
- data/test/node_test.rb +1 -1
- data/test/reporter_test.rb +1 -1
- data/test/runner_test.rb +1 -6
- data/test/util_test.rb +1 -1
- data/test/visitor_test.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5232c4c9a9bf78763791cf182129900a376d1dd619fbf4a21f441ea10c0a7f27
|
4
|
+
data.tar.gz: 1d35a5ec4678e1a80624c058a32647cc6013c6a3dc4f87f3590bea2a226ea412
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 385ddc6a48f39657c38ee43ade9c89677aa686f8e7f55ec90eb9aef7d9dbec795cea55014e48070a22a18b63daea081863a4c6c0afc3c1d24c33316a70fcd149
|
7
|
+
data.tar.gz: ea3d7947b5195db3cdfd7a435adbdf0d96edfcfc0a653b67d7a241d4dec3e479c986fe8fc8294427e3c05343681b2308474131a35e5e62b75d1214660e62599e
|
data/README.md
CHANGED
@@ -335,6 +335,8 @@ Quiet mode reports progress only of failed or error test cases (and doesn't
|
|
335
335
|
report progress of passed ones), so it's output is very compact. This is
|
336
336
|
very useful for large project which contains large number of test cases.
|
337
337
|
|
338
|
+
(Note: `ruby test/example01_test.rb -s <STYLE>` is also available.)
|
339
|
+
|
338
340
|
|
339
341
|
### Run All Test Scripts Under Directory
|
340
342
|
|
data/Rakefile.rb
CHANGED
data/lib/oktest.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
|
3
3
|
###
|
4
|
-
### $Release: 1.1.
|
4
|
+
### $Release: 1.1.1 $
|
5
5
|
### $Copyright: copyright(c) 2011-2021 kuwata-lab.com all rights reserved $
|
6
6
|
### $License: MIT License $
|
7
7
|
###
|
@@ -12,7 +12,7 @@ require 'set'
|
|
12
12
|
module Oktest
|
13
13
|
|
14
14
|
|
15
|
-
VERSION = '$Release: 1.1.
|
15
|
+
VERSION = '$Release: 1.1.1 $'.split()[1]
|
16
16
|
|
17
17
|
|
18
18
|
class OktestError < StandardError
|
@@ -2052,8 +2052,6 @@ END
|
|
2052
2052
|
|
2053
2053
|
|
2054
2054
|
def self.run(reporter: nil, style: nil)
|
2055
|
-
#; [!kfi8b] do nothing when 'Oktest.scope()' not called.
|
2056
|
-
return unless THE_GLOBAL_SCOPE.has_child?
|
2057
2055
|
#; [!6xn3t] creates reporter object according to 'style:' keyword arg.
|
2058
2056
|
klass = (style ? REPORTER_CLASSES[style] : REPORTER_CLASS) or
|
2059
2057
|
raise ArgumentError, "#{style.inspect}: unknown style."
|
@@ -2582,6 +2580,7 @@ END
|
|
2582
2580
|
}
|
2583
2581
|
parser.on('-F PATTERN') {|val|
|
2584
2582
|
#; [!71h2x] '-F ...' option will be error.
|
2583
|
+
#; [!j01y7] if filerting by '-F' matched nothing, then prints zero result.
|
2585
2584
|
val =~ /\A(topic|spec|tag|sid)(=|!=)/ or
|
2586
2585
|
raise OptionParser::InvalidArgument, val
|
2587
2586
|
opts.filter = val
|
data/oktest.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
|
3
3
|
###
|
4
|
-
### $Release: 1.1.
|
4
|
+
### $Release: 1.1.1 $
|
5
5
|
### $License: MIT License $
|
6
6
|
### $Copyright: copyright(c) 2011-2021 kuwata-lab.com all rights reserved $
|
7
7
|
###
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
13
13
|
s.name = "oktest"
|
14
14
|
s.author = "kwatch"
|
15
15
|
s.email = "kwatch@gmail.com"
|
16
|
-
s.version = "$Release: 1.1.
|
16
|
+
s.version = "$Release: 1.1.1 $".split()[1]
|
17
17
|
s.license = "MIT"
|
18
18
|
s.platform = Gem::Platform::RUBY
|
19
19
|
s.homepage = "https://github.com/kwatch/oktest/tree/ruby"
|
data/test/assertion_test.rb
CHANGED
data/test/filter_test.rb
CHANGED
data/test/fixture_test.rb
CHANGED
data/test/generator_test.rb
CHANGED
data/test/helper_test.rb
CHANGED
data/test/initialize.rb
CHANGED
data/test/mainapp_test.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
###
|
2
|
-
### $Release: 1.1.
|
2
|
+
### $Release: 1.1.1 $
|
3
3
|
### $Copyright: copyright(c) 2011-2021 kuwata-lab.com all rights reserved $
|
4
4
|
### $License: MIT License $
|
5
5
|
###
|
@@ -241,7 +241,7 @@ END
|
|
241
241
|
end
|
242
242
|
|
243
243
|
it "[!qqizl] '--version' option prints version number." do
|
244
|
-
expected = '$Release: 1.1.
|
244
|
+
expected = '$Release: 1.1.1 $'.split()[1] + "\n"
|
245
245
|
#
|
246
246
|
ret, sout, serr = run("--version")
|
247
247
|
assert_eq ret, 0
|
@@ -434,6 +434,17 @@ END
|
|
434
434
|
end
|
435
435
|
end
|
436
436
|
|
437
|
+
it "[!j01y7] if filerting by '-F' matched nothing, then prints zero result." do
|
438
|
+
expected = <<'END'
|
439
|
+
## total:0 (pass:0, fail:0, error:0, skip:0, todo:0) in 0.000s
|
440
|
+
END
|
441
|
+
#
|
442
|
+
ret, sout, serr = run("-F", "tag=blablabla", @testfile)
|
443
|
+
assert_eq ret, 0
|
444
|
+
assert_eq edit_actual(sout), edit_expected(expected)
|
445
|
+
assert_eq serr, ""
|
446
|
+
end
|
447
|
+
|
437
448
|
it "[!6ro7j] '--color=on' option enables output coloring forcedly." do
|
438
449
|
[true, false].each do |bool|
|
439
450
|
[true, false].each do |tty|
|
data/test/matcher_test.rb
CHANGED
data/test/misc_test.rb
CHANGED
data/test/node_test.rb
CHANGED
data/test/reporter_test.rb
CHANGED
data/test/runner_test.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# -*- coding: utf-8 -*-
|
2
2
|
|
3
3
|
###
|
4
|
-
### $Release: 1.1.
|
4
|
+
### $Release: 1.1.1 $
|
5
5
|
### $Copyright: copyright(c) 2011-2021 kuwata-lab.com all rights reserved $
|
6
6
|
### $License: MIT License $
|
7
7
|
###
|
@@ -583,11 +583,6 @@ END
|
|
583
583
|
assert_eq edit_actual(sout), edit_expected(expected)
|
584
584
|
assert_eq serr, ""
|
585
585
|
end
|
586
|
-
it "[!kfi8b] do nothing when 'Oktest.scope()' not called." do
|
587
|
-
sout, serr = capture { Oktest.run() }
|
588
|
-
assert_eq sout, ""
|
589
|
-
assert_eq serr, ""
|
590
|
-
end
|
591
586
|
it "[!6xn3t] creates reporter object according to 'style:' keyword arg." do
|
592
587
|
expected = VERBOSE_OUTPUT
|
593
588
|
prepare()
|
data/test/util_test.rb
CHANGED
data/test/visitor_test.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oktest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kwatch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-09-
|
11
|
+
date: 2021-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: diff-lcs
|