grntest 1.2.4 → 1.2.5
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/doc/text/news.md +8 -0
- data/lib/grntest/executors/base-executor.rb +2 -0
- data/lib/grntest/test-runner.rb +1 -0
- data/lib/grntest/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0abb970522c59544eb9373c89c179835bdb0818d
|
|
4
|
+
data.tar.gz: ad7f18e703fe092758eab01541f271b7ca1aa485
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 245b5e6849384cff5959aec6b6cc75bb188b4cb58b7f354531df756b86fbf060e97d149d0b5849d026d93be50a65b9225480f0fe8a5b70786c9d701586f35025
|
|
7
|
+
data.tar.gz: 78483e2708e13fe1bc4ce3e6b423a42976626d0dc1d7f6753b5352965b6a368d3326f424bce54deac2749f284cd951ab85e51b3e26768a591dd795e20280ea00
|
data/doc/text/news.md
CHANGED
data/lib/grntest/test-runner.rb
CHANGED
data/lib/grntest/version.rb
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (C) 2012-
|
|
1
|
+
# Copyright (C) 2012-2017 Kouhei Sutou <kou@clear-code.com>
|
|
2
2
|
#
|
|
3
3
|
# This program is free software: you can redistribute it and/or modify
|
|
4
4
|
# it under the terms of the GNU General Public License as published by
|
|
@@ -14,5 +14,5 @@
|
|
|
14
14
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
15
15
|
|
|
16
16
|
module Grntest
|
|
17
|
-
VERSION = "1.2.
|
|
17
|
+
VERSION = "1.2.5"
|
|
18
18
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: grntest
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-
|
|
12
|
+
date: 2017-08-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: json
|
|
@@ -225,7 +225,7 @@ specification_version: 4
|
|
|
225
225
|
summary: Grntest is a testing framework for Groonga. You can write a test for Groonga
|
|
226
226
|
by writing Groonga commands and expected result.
|
|
227
227
|
test_files:
|
|
228
|
-
- test/test
|
|
228
|
+
- test/run-test.rb
|
|
229
229
|
- test/executors/test-base-executor.rb
|
|
230
230
|
- test/executors/test-standard-io-executor.rb
|
|
231
|
-
- test/
|
|
231
|
+
- test/test-log-parser.rb
|