1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-09-29 04:28:53 +02:00

Bats 0.4.0

This commit is contained in:
Sam Stephenson 2014-08-13 09:59:22 -05:00
parent d6d185ad5b
commit 7b032e4b23
2 changed files with 16 additions and 1 deletions

View File

@ -235,6 +235,21 @@ on the wiki.
## Version history
*0.4.0* (August 13, 2014)
* Improved the display of failing test cases. Bats now shows the
source code of failing test lines, along with full stack traces
including function names, filenames, and line numbers.
* Improved the display of the pretty-printed test summary line to
include the number of skipped tests, if any.
* Improved the speed of the preprocessor, dramatically shortening test
and suite startup times.
* Added support for absolute pathnames to the `load` helper.
* Added support for single-line `@test` definitions.
* Added bats(1) and bats(7) manual pages.
* Modified the `bats` command to default to TAP output when the `$CI`
variable is set, to better support environments such as Travis CI.
*0.3.1* (October 28, 2013)
* Fixed an incompatibility with the pretty formatter in certain

View File

@ -2,7 +2,7 @@
set -e
version() {
echo "Bats 0.3.1"
echo "Bats 0.4.0"
}
usage() {