tac-cli 0.0.8 → 0.0.9
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.
- data/lib/cli/commands/multiple_tests.rb +3 -1
- data/lib/cli/version.rb +1 -1
- metadata +1 -1
@@ -41,6 +41,7 @@ module CTT::Cli::Command
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def run_tests
|
44
|
+
say("**** Run multiple tests ****", :yellow)
|
44
45
|
index = 1
|
45
46
|
@suites.suites["suites"].each do |name, _|
|
46
47
|
say("#{index}) start to run test suite: #{name}\n", :yellow)
|
@@ -90,6 +91,7 @@ module CTT::Cli::Command
|
|
90
91
|
end
|
91
92
|
|
92
93
|
def print_cases_summary(summary)
|
94
|
+
say("**** Summary for multiple tests ****", :yellow)
|
93
95
|
say("\nFinished in #{format_time(summary[:duration])}")
|
94
96
|
|
95
97
|
color = :green
|
@@ -99,7 +101,7 @@ module CTT::Cli::Command
|
|
99
101
|
end
|
100
102
|
|
101
103
|
def print_failed_cases(summary)
|
102
|
-
|
104
|
+
if summary[:failed] > 0
|
103
105
|
say("\nFailures:")
|
104
106
|
summary[:failed_cases].each do |suite, cases|
|
105
107
|
say(" Test Suite: #{suite}", :yellow)
|
data/lib/cli/version.rb
CHANGED