minitest_log 0.1.0 → 0.2.0
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/Gemfile.lock +1 -1
- data/README.md +9 -7
- data/lib/minitest_log/version.rb +1 -1
- data/minitest_log.gemspec +4 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 716851f9c685e15ba71ffea59e47dad1da9343cbf2b9bd23c14f6ce343492085
|
|
4
|
+
data.tar.gz: a9609761116629a1c2d34ffd6caa6d435e4028bdcfe1b22df5f21c6312215027
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 729a1dc2f378cdce0a14be1ab5d67307aad48e47e8c8bc77f446ccdcb5f80f10d0595f0ad12fea71cc3b3fde733160caf0f6b86bdc7b769af12415274c7192a2
|
|
7
|
+
data.tar.gz: 2e2418623de37f1f1e6a249f32a6737f68ed719a711315f759f8420f38a70f57979b1368f3fc9d8e3d8c4a85f11eb73bfd685af6c3a7cafaf5cafe45f43ce509
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
[](https://badge.fury.io/rb/minitest_log)
|
|
2
|
+
|
|
1
3
|
# MinitestLog
|
|
2
4
|
|
|
3
5
|
|
|
@@ -276,13 +278,13 @@ end
|
|
|
276
278
|
```log.xml```:
|
|
277
279
|
```xml
|
|
278
280
|
<log>
|
|
279
|
-
<section_ name='My section with timestamp' timestamp='2019-05-
|
|
281
|
+
<section_ name='My section with timestamp' timestamp='2019-05-07-Tue-10.58.13.155'>
|
|
280
282
|
Section with timestamp.
|
|
281
283
|
</section_>
|
|
282
|
-
<section_ name='My section with duration' duration_seconds='0.
|
|
284
|
+
<section_ name='My section with duration' duration_seconds='0.501'>
|
|
283
285
|
Section with duration.
|
|
284
286
|
</section_>
|
|
285
|
-
<section_ name='My section with both' timestamp='2019-05-
|
|
287
|
+
<section_ name='My section with both' timestamp='2019-05-07-Tue-10.58.13.656' duration_seconds='0.500'>
|
|
286
288
|
Section with both.
|
|
287
289
|
</section_>
|
|
288
290
|
</log>
|
|
@@ -354,7 +356,7 @@ end
|
|
|
354
356
|
```xml
|
|
355
357
|
<log>
|
|
356
358
|
<section_ name='My unrescued section'>
|
|
357
|
-
<uncaught_exception_ timestamp='2019-05-
|
|
359
|
+
<uncaught_exception_ timestamp='2019-05-07-Tue-10.58.14.602' class='RuntimeError'>
|
|
358
360
|
<message_>
|
|
359
361
|
Boo!
|
|
360
362
|
</message_>
|
|
@@ -411,7 +413,7 @@ end
|
|
|
411
413
|
```log.xml```:
|
|
412
414
|
```xml
|
|
413
415
|
<log>
|
|
414
|
-
<section_ name='Section with potpourri of arguments' a='0' b='1' timestamp='2019-05-
|
|
416
|
+
<section_ name='Section with potpourri of arguments' a='0' b='1' timestamp='2019-05-07-Tue-10.58.11.338' c='2' d='3' duration_seconds='0.502'>
|
|
415
417
|
Word More words
|
|
416
418
|
<rescued_exception_ class='Exception' message='Boo!'>
|
|
417
419
|
<backtrace_>
|
|
@@ -1024,7 +1026,7 @@ end
|
|
|
1024
1026
|
(?-mix:Bar)
|
|
1025
1027
|
</data_>
|
|
1026
1028
|
<data_ name='My time' class='Time' method=':to_s'>
|
|
1027
|
-
2019-05-
|
|
1029
|
+
2019-05-07 10:58:07 -0500
|
|
1028
1030
|
</data_>
|
|
1029
1031
|
<data_ name='My uri,' class='URI::HTTPS' method=':to_s'>
|
|
1030
1032
|
https://www.github.com
|
|
@@ -1796,7 +1798,7 @@ end
|
|
|
1796
1798
|
<verdict_ method='verdict_assert_same?' outcome='failed' id='another_id' message='Another message'>
|
|
1797
1799
|
<expected_ class='String' value='"foo"'/>
|
|
1798
1800
|
<actual_ class='String' value='"foo"'/>
|
|
1799
|
-
<exception_ class='Minitest::Assertion' message='Expected "foo" (oid=
|
|
1801
|
+
<exception_ class='Minitest::Assertion' message='Expected "foo" (oid=27958320) to be the same as "foo" (oid=27958340).'>
|
|
1800
1802
|
<backtrace_>
|
|
1801
1803
|
<![CDATA[
|
|
1802
1804
|
verdict_assert_same.rb:6:in `block in test_demo_verdict'
|
data/lib/minitest_log/version.rb
CHANGED
data/minitest_log.gemspec
CHANGED
|
@@ -12,6 +12,10 @@ Gem::Specification.new do |spec|
|
|
|
12
12
|
spec.homepage = "https://github.com/BurdetteLamar/minitest_log"
|
|
13
13
|
spec.license = 'MIT'
|
|
14
14
|
|
|
15
|
+
spec.metadata = {
|
|
16
|
+
"documentation_uri" => "https://github.com/BurdetteLamar/minitest_log#minitestlog",
|
|
17
|
+
}
|
|
18
|
+
|
|
15
19
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
|
16
20
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
|
17
21
|
# if spec.respond_to?(:metadata)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: minitest_log
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- burdettelamar
|
|
@@ -105,7 +105,8 @@ files:
|
|
|
105
105
|
homepage: https://github.com/BurdetteLamar/minitest_log
|
|
106
106
|
licenses:
|
|
107
107
|
- MIT
|
|
108
|
-
metadata:
|
|
108
|
+
metadata:
|
|
109
|
+
documentation_uri: https://github.com/BurdetteLamar/minitest_log#minitestlog
|
|
109
110
|
post_install_message:
|
|
110
111
|
rdoc_options: []
|
|
111
112
|
require_paths:
|