cucumber_statistics 1.0.0 → 1.0.1
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 +8 -8
- data/README.md +1 -1
- data/lib/cucumber_statistics/renderer_helper.rb +1 -1
- data/lib/cucumber_statistics/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MDE3NTMwOGZhZDY5YzcwYzVhZWEwN2JiMzM2NTk4MWU0NjEwOTEyZQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NDRlODQ3NzMzNjM2YmUwYjMwZDhjOGNiNjg0M2I5ZDk2NjhiNWZiYg==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MDAwZjkyMGNiMThlM2I4YmRiZDNhMDQzMmY5ZmQ0YjAyZjhiMmQ5ZDE0YjI2
|
10
|
+
ODRkYWI1NmVjM2UzZTg2NTNiYmE3NzcyNjkyZGVlODk2ZTkzYTVlNzkxZGRi
|
11
|
+
ZTg5NzRkNjcyOGJjYmY2N2E1OThjMWJlZWVlOGEwMDRiNWQyODc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
OGI3NWVhOTkzNGNkOTliOTdhZmJhNjcwNTQ1MGQ2ZGExMDI1MDVmNTNhZGQy
|
14
|
+
Nzk2Y2FjZDUzMDc1M2ZjNWJiYzU2YWFiMTZmMjQwN2Q3YjExYTJiYTEyNWVk
|
15
|
+
ZTMwMWVhNTQ3OTc2YmQ0YWIzN2I5MDVlOGE0OGNkNjNmNzFlY2I=
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Cucumber Statistics
|
2
2
|
|
3
|
-
|
3
|
+
Tracks cucumber timing and displays results in a single html page with outliers highlighted in a table sortable by various metrics.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
@@ -9,7 +9,7 @@ module CucumberStatistics
|
|
9
9
|
def time_td(step_results, metric, *warning_step_results)
|
10
10
|
duration = step_results[1][metric]
|
11
11
|
|
12
|
-
%{<td #{warning_class(step_results, warning_step_results)} data-value="#{duration}">#{format(duration)}</td>}
|
12
|
+
%{<td #{warning_class(step_results, warning_step_results)} data-value="#{duration}" title="#{duration}">#{format(duration)}</td>}
|
13
13
|
end
|
14
14
|
|
15
15
|
def warning_class(step_results, warning_step_results)
|