You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
git-secret/vendor/bats-core/test/fixtures/junit-formatter/issue_531.bats

16 lines
262 B
Bash

#!/usr/bin/env bats
setup_file() {
echo "# setup_file stdout"
echo "# setup_file fd3" >&3
}
teardown_file() {
echo "# teardown_file stdout"
echo "# teardown_file fd3" >&3
}
@test "My test" {
echo "# test stdout"
echo "# test fd3" >&3
}