1
0
mirror of https://github.com/sstephenson/bats.git synced 2026-02-25 09:18:10 +01:00

Add skipped count tests in the summary

This also update the behaviour of the summary, now it only display the
number of failures, and skipped tests also, if the numbers are greater
than zero.
This commit is contained in:
Henrique Moody
2013-10-30 22:10:00 -02:00
committed by Ross Duggan
parent 2c6fed1838
commit 3be82466a7
6 changed files with 64 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
@test "a passing test" {
true
}
@test "a failing test" {
false
}

View File

@@ -0,0 +1,7 @@
@test "a passing test" {
true
}
@test "a skipping test" {
skip
}

View File

@@ -0,0 +1,11 @@
@test "a passing test" {
true
}
@test "a skipping test" {
skip
}
@test "a failing test" {
false
}