allure-ruby-commons 2.16.1 → 2.16.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea5e2f8740282a4774b060a76b35522c1161d9f108c9c37fe3170481e3e70b0c
|
4
|
+
data.tar.gz: 3639b7df27592188870e198baad8c5cf97dd35895e78ec8414b8a2567819a2a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 800e4c403a091f70bdadd4d0209681c80495acca7d2f6d786ad990987ec6feb75111ccc4af22febae88e6ea26ad8839c1c366c94ab7538926986bd43ce56fb3f
|
7
|
+
data.tar.gz: 3c1039e855756f4dc762e0bb022219dec79e534d14c3dbbe82dd0b93625372ed1232a809e738182aac8a69742c3c613a53c4703b6af331aa29aea7f8bda7738a
|
@@ -13,6 +13,8 @@ module Allure
|
|
13
13
|
ENVIRONMENT_FILE = "environment.properties"
|
14
14
|
# @return [String] categories definition json
|
15
15
|
CATEGORIES_FILE = "categories.json"
|
16
|
+
# @return [Hash] Oj json options
|
17
|
+
OJ_OPTIONS = { mode: :custom, use_to_hash: true, ascii_only: true }.freeze
|
16
18
|
|
17
19
|
# File writer instance
|
18
20
|
#
|
@@ -25,14 +27,14 @@ module Allure
|
|
25
27
|
# @param [Allure::TestResult] test_result
|
26
28
|
# @return [void]
|
27
29
|
def write_test_result(test_result)
|
28
|
-
write("#{test_result.uuid}#{TEST_RESULT_SUFFIX}", Oj.dump(test_result))
|
30
|
+
write("#{test_result.uuid}#{TEST_RESULT_SUFFIX}", Oj.dump(test_result, OJ_OPTIONS))
|
29
31
|
end
|
30
32
|
|
31
33
|
# Write test result container
|
32
34
|
# @param [Allure::TestResultContainer] test_container_result
|
33
35
|
# @return [void]
|
34
36
|
def write_test_result_container(test_container_result)
|
35
|
-
write("#{test_container_result.uuid}#{TEST_RESULT_CONTAINER_SUFFIX}", Oj.dump(test_container_result))
|
37
|
+
write("#{test_container_result.uuid}#{TEST_RESULT_CONTAINER_SUFFIX}", Oj.dump(test_container_result, OJ_OPTIONS))
|
36
38
|
end
|
37
39
|
|
38
40
|
# Write allure attachment file
|
@@ -59,7 +61,7 @@ module Allure
|
|
59
61
|
if categories.is_a?(File)
|
60
62
|
copy(categories.path, CATEGORIES_FILE)
|
61
63
|
else
|
62
|
-
write(CATEGORIES_FILE, Oj.dump(categories))
|
64
|
+
write(CATEGORIES_FILE, Oj.dump(categories, OJ_OPTIONS))
|
63
65
|
end
|
64
66
|
end
|
65
67
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: allure-ruby-commons
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.16.
|
4
|
+
version: 2.16.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrejs Cunskis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mime-types
|
@@ -145,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
145
145
|
- !ruby/object:Gem::Version
|
146
146
|
version: '0'
|
147
147
|
requirements: []
|
148
|
-
rubygems_version: 3.3.
|
148
|
+
rubygems_version: 3.3.7
|
149
149
|
signing_key:
|
150
150
|
specification_version: 4
|
151
151
|
summary: Common library for allure results generation
|