lesli_testing 1.2.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a1a8249474087d791bf470b3fe1b8f7e5aab1eaf16482f474157c1826657debc
4
- data.tar.gz: fde6fbaf49ef6b37ce71af546a5d8e742da43c7dbd4ac672b99ad535270da0ae
3
+ metadata.gz: 9ded980f17f0eecf679e78acf07e9c161172ab5d5fd82fc9f81f39d725886f72
4
+ data.tar.gz: 02b7b1279b175c6fb46d1818d190a920e40da7dfe34003c332237db2902f2d90
5
5
  SHA512:
6
- metadata.gz: ea2738aa8c621328badb95da25f722003b6439d997141fcaf228c0faab6680df7f4cd6c32aef9335ecf770c764d1c86de66db3511675276b86828735972dca68
7
- data.tar.gz: b3cd476aaa207022654988df44d4f0515acab88a8b627064c98454655c18a545a1a28e5ac6459f048961092caad2d64a60da51ad22188dfd7a2f014c6939a6b4
6
+ metadata.gz: 8b018fb87570259581b7ebce74b0e50c37fdfb6be788b19d449fe9557d4512a8dca2f4ff4c6fa100394c8da6792b4d9513dab97fbdd154d98e3274f32437c3d3
7
+ data.tar.gz: f09421aa36f74b8e7a840459d30a0ca9e08187367458810366dc7337cbabf4aa0e94f8caaa9753626043e9c3085955751901156537a787b4c9e9d1e544c418c3
@@ -68,15 +68,15 @@ module LesliTesting
68
68
  failures_color = :blue
69
69
  failures_color = :red if total_failures > 0
70
70
 
71
- Termline::Msg.builder(status, tag:'STATUS . . . . . . . :', color: status_color, timestamp:nil)
72
- Termline::Msg.builder(total_tests, tag:'TESTS. . . . . . . . :', color: :blue, timestamp:nil)
73
- Termline::Msg.builder(passed, tag:'PASSED . . . . . . . :', color: :blue, timestamp:nil)
74
- Termline::Msg.builder(total_failures, tag:'FAILURES . . . . . . :', color: failures_color, timestamp:nil)
75
- Termline::Msg.builder(total_errors, tag:'ERRORS . . . . . . . :', color: :blue, timestamp:nil)
76
- Termline::Msg.builder(total_skips, tag:'SKIPPED. . . . . . . :', color: :blue, timestamp:nil)
77
- Termline::Msg.builder(total_assertions, tag:'ASSERTIONS . . . . . :', color: :blue, timestamp:nil)
78
- Termline::Msg.builder("#{success_rate}%", tag:'SUCCESS RATE . . . . :', color: failures_color, timestamp:nil)
79
- Termline::Msg.builder(format("%.2fs", duration),tag:'TIME . . . . . . . . :', color: :blue, timestamp:nil)
71
+ puts(Termline::Msg.builder(status, tag:'STATUS . . . . . . . :', color: status_color, timestamp:nil))
72
+ puts(Termline::Msg.builder(total_tests, tag:'TESTS. . . . . . . . :', color: :blue, timestamp:nil))
73
+ puts(Termline::Msg.builder(passed, tag:'PASSED . . . . . . . :', color: :blue, timestamp:nil))
74
+ puts(Termline::Msg.builder(total_failures, tag:'FAILURES . . . . . . :', color: failures_color, timestamp:nil))
75
+ puts(Termline::Msg.builder(total_errors, tag:'ERRORS . . . . . . . :', color: :blue, timestamp:nil))
76
+ puts(Termline::Msg.builder(total_skips, tag:'SKIPPED. . . . . . . :', color: :blue, timestamp:nil))
77
+ puts(Termline::Msg.builder(total_assertions, tag:'ASSERTIONS . . . . . :', color: :blue, timestamp:nil))
78
+ puts(Termline::Msg.builder("#{success_rate}%", tag:'SUCCESS RATE . . . . :', color: failures_color, timestamp:nil))
79
+ puts(Termline::Msg.builder(format("%.2fs", duration),tag:'TIME . . . . . . . . :', color: :blue, timestamp:nil))
80
80
 
81
81
  Termline.br 2
82
82
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LesliTesting
4
- VERSION = "1.2.0"
5
- BUILD = "1774226154"
4
+ VERSION = "1.2.1"
5
+ BUILD = "1774404580"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lesli_testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Lesli Development Team