bash-tap icon indicating copy to clipboard operation
bash-tap copied to clipboard

A basic bash port of a Test::More/Test::Builder-style TAP-compliant test library.

Results 4 bash-tap issues
Sort by recently updated
recently updated
newest added

A colleague (@itsme-narahari) I introduced to bash-tap, when trying to track down the reason for a failing test, pointed this out to me on line 174: ``` if [ "$result"...

Provide a note() function similar in nature to the diag() function. Notes are shown by 'prove' at all times, whereas diag messages are only shown with '-v' specified.

I've had my own bash-tap library I've been using for a while, but it wasn't as complete as this. I also want to package this and put it into my...

After getting over my initial shock that bash-tap provided no such assertion function already, I wrote this. My guess is that prior use cases have focused on testing code actually...