generic_test 0.1.7 → 0.1.8
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/ChangeLog +4 -0
- data/exe/generic_test +1 -1
- data/lib/generic_test/version.rb +1 -1
- 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: ed221c194f2b0ad95bd33839a69403f9fae9ef4f4ba4959c05d2d42e67860d90
|
|
4
|
+
data.tar.gz: 4a43347e265705cf4e048867cd752473011830afd48851a3f8694f47f4000a3b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 636ee1e1f48ef8729620121027fda4c84fc62c334332971b28730e01e97442a5661c0c7668cd06b6c94821a6b722e865b0143adfb7b51989c7c58e53d59c077c
|
|
7
|
+
data.tar.gz: b58eb19575dab1a23e7567f7da6f79e9ef6937af97352de60668823f8a73228ef5c3bf11eceb81e069b4121c7c6a43e5943a3a6fb83f59cbe17151ec55b672f0
|
data/ChangeLog
CHANGED
data/exe/generic_test
CHANGED
|
@@ -16,7 +16,7 @@ class Exe < Thor
|
|
|
16
16
|
desc = ENV['PAGE_URL'].split('://').last.tr('/', '_')
|
|
17
17
|
junit_format = "-f RspecJunitFormatter --out logs/page_#{desc}.xml"
|
|
18
18
|
ENV['REPORT_PATH'] = "reports/#{desc}"
|
|
19
|
-
html_format =
|
|
19
|
+
html_format = '--require rspec_html_reporter -f RspecHtmlReporter'
|
|
20
20
|
command = "rspec #{test_file_path} --format documentation --color #{junit_format} #{html_format}"
|
|
21
21
|
raise $CHILD_STATUS.to_s unless system command
|
|
22
22
|
end
|
data/lib/generic_test/version.rb
CHANGED