rspec_tap_formatter 0.5.0 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/rspec_tap_formatter.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66365befe9f6dc809b2fcf22266061c0ea19801e134c171ef021e7aaeb2ffd85
|
4
|
+
data.tar.gz: cce57ce81f468ee88666ddd9c13fb569f764131d6af765b16a4a748ffcef3b98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a96a0a27610aa245dd30ee59997dbf6d7d2a521277e9da449a7dd25770391b883e1959c2860e9898107a21898d0bfb20eed9c98062e5821ce0097366be4dc247
|
7
|
+
data.tar.gz: 2de3abc4aba8f2db7e01d3c603666d0513408a66bf500aa5aefaed5ef7b8c4c40d9966219f055b1f77f95c88d3fc128c22b190efcf7210e00b6b4df508a60090
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/lib/rspec_tap_formatter.rb
CHANGED
@@ -2,7 +2,7 @@ require "rspec/core"
|
|
2
2
|
require "rspec/core/formatters/base_formatter"
|
3
3
|
|
4
4
|
class RspecTapFormatter < RSpec::Core::Formatters::BaseFormatter
|
5
|
-
VERSION = "0.
|
5
|
+
VERSION = "0.6.0"
|
6
6
|
# Specification found: https://testanything.org/tap-version-13-specification.html
|
7
7
|
#
|
8
8
|
# This registers the notifications this formatter supports, and tells
|
@@ -29,6 +29,6 @@ class RspecTapFormatter < RSpec::Core::Formatters::BaseFormatter
|
|
29
29
|
|
30
30
|
def example_failed(notification)
|
31
31
|
@output << "not ok #{@count} #{notification.example.description}\n"
|
32
|
-
@output << "# #{
|
32
|
+
@output << "# #{notification.message_lines.join('\n# ')}\n"
|
33
33
|
end
|
34
34
|
end
|