1
0
mirror of https://github.com/sstephenson/bats.git synced 2024-11-17 11:42:33 +01:00

Bats 0.2.0

This commit is contained in:
Sam Stephenson 2012-11-16 18:06:58 -06:00
parent d5d57bda5f
commit 5030f53ecc
2 changed files with 10 additions and 1 deletions

View File

@ -156,6 +156,15 @@ examples.
### Version history ### Version history
*0.2.0* (November 16, 2012)
* Added test suite support. The `bats` command accepts a directory
name containing multiple test files to be run in aggregate.
* Added the ability to count the number of test cases in a file or
suite by passing the `-c` flag to `bats`.
* Preprocessed sources are cached between test case runs in the same
file for better performance.
*0.1.0* (December 30, 2011) *0.1.0* (December 30, 2011)
* Initial public release. * Initial public release.

View File

@ -2,7 +2,7 @@
set -e set -e
version() { version() {
echo "Bats 0.1.0" echo "Bats 0.2.0"
} }
resolve_link() { resolve_link() {