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

> Introduces new variables: > $output_stdout, $output_stderr, $lines_stdout, $lines_stderr > Existing `$output` and `$lines` variables remain. I found this while looking into #55 and noticed it never made it into...

I am seeing intermittent error while running batch tests, running the same test standalone works. Detailed analysis reveals that it only happens for test cases that uses run ... to...

It would be really useful to get the test run time along with the result when running the tests, that will allow easier check of which tests are taking most...

Implicit test suite is supported (_as least I suppose so_) by wrapping another bats script, and load it in a top level test. This is smart, however below drawbacks hit...

Hey, I am seeing a strange behaviour when using `load` or directly `source`ing files that set the [unofficial strict mode](http://redsymbol.net/articles/unofficial-bash-strict-mode/). The behaviour I am seeing is that my test stops...

Hi, This might be a silly question but in my case I have a persistent variable in a function and so want to call this function twice run (func1 arg1...

I'm testing 3 seperate text display algorithms using bats. I found that the reporting was very accurate when one of my algorithms was providing extra spacing. When I put my...

Hi Suppose I have 2 tests in file1.sh and 2 in file2.sh bats file1.sh will output 2 tests bats file2.sh will output 2 tests and in each file, BATS_TEST_NUMBER is...

Hi there, I noticed a difference in the behaviour of Bats recently, which I wanted to query to check I understand it correctly.. When I load external functions into a...

Hi many thanks for your time invested in BATS. BATS is really helping. It would be nice, if BATS developers could add a few lines in docs about the way...