bats icon indicating copy to clipboard operation
bats copied to clipboard

Bash Automated Testing System

Results 101 bats issues
Sort by recently updated
recently updated
newest added

I've spent the last week using this library and only realized last night that I should be using bats-core as this one is no longer maintained. Could you change the...

The option can be set using the BATS_TEST_PATTERN env var. TODO: Add bats cli option Fixes issue #36

I am sourcing my functions in the test as part of setup so: setup() { . ./my_functs } I like to run my bash scripts with "set -o nounset" but...

Reassigning IFS breaks things like when the test suite then attempts to check if `[[ $output = "${list[*]}". See https://github.com/exercism/bash/issues/382

I am just started to learn the Docker technology. Using book "Docker on Amazon Web Services" by Justin Menga. There is an example using the acceptance.bats file with the script...

I use bats with the other maintainers and mentors on the bash track at [exercism.io](https://exercism.io). We include skips on our tests to encourage TDD, but when checking work it is...

Hi, is there a way that I can run multiple bats at the same time using 1 thread for a bats and have a limit for the thread that I...

Very often, tests have pre-requisites. This may be services to be on, packages to be installed, or others. When these pre-requisites are not present, depending tests fail with cryptic messages,...