22 lines
691 B
Bash
22 lines
691 B
Bash
# shellcheck shell=bats
|
|
|
|
load "${MAIN_BASH_IT_DIR?}/test/test_helper.bash"
|
|
|
|
function local_setup_file()
|
|
{
|
|
############ STACK_TRACE_BUILDER #####################
|
|
Function_Name="${FUNCNAME[0]}"
|
|
Function_PATH="${Function_PATH}/${Function_Name}"
|
|
######################################################
|
|
true
|
|
# don't load any libraries as the tests here test the *whole* kit
|
|
############### Stack_TRACE_BUILDER ################
|
|
Function_PATH="$( dirname ${Function_PATH} )"
|
|
####################################################
|
|
}
|
|
|
|
@test "lib composure: _composure_keywords()" {
|
|
run _composure_keywords
|
|
assert_output "about author example group param version"
|
|
}
|