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/load/test_helper.bash

20 lines
267 B
Bash

help_me() {
true
}
failing_helper() {
false
}
return_0() {
# Just return 0. Intentional assignment to boost line numbers
result=0
return $result
}
return_1() {
# Just return 0. Intentional assignment to boost line numbers
result=1
return $result
}