lib/command_duration: tests & whitespace
parent
1c2fc2837f
commit
866e5be86b
|
|
@ -25,22 +25,13 @@ function local_setup_file() {
|
||||||
assert_output $''
|
assert_output $''
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "plugins cmd-returned-notify: preexec no output" {
|
@test "lib command_duration: preexec no output" {
|
||||||
export COMMAND_DURATION_START_SECONDS=
|
export COMMAND_DURATION_START_SECONDS=
|
||||||
run _command_duration_pre_exec
|
run _command_duration_pre_exec
|
||||||
assert_success
|
assert_success
|
||||||
assert_output ""
|
assert_output ""
|
||||||
}
|
}
|
||||||
|
@test "lib command_duration: preexec set COMMAND_DURATION_START_SECONDS" {
|
||||||
@test "plugins cmd-returned-notify: preexec no output env set" {
|
|
||||||
skip "wut"
|
|
||||||
export COMMAND_DURATION_START_SECONDS="${EPOCHREALTIME:-$SECONDS}"
|
|
||||||
run _command_duration_pre_exec
|
|
||||||
assert_failure
|
|
||||||
assert_output ""
|
|
||||||
}
|
|
||||||
|
|
||||||
@test "plugins cmd-returned-notify: preexec set COMMAND_DURATION_START_SECONDS" {
|
|
||||||
export COMMAND_DURATION_START_SECONDS=
|
export COMMAND_DURATION_START_SECONDS=
|
||||||
assert_equal "${COMMAND_DURATION_START_SECONDS}" ""
|
assert_equal "${COMMAND_DURATION_START_SECONDS}" ""
|
||||||
NOW="${EPOCHREALTIME:-$SECONDS}"
|
NOW="${EPOCHREALTIME:-$SECONDS}"
|
||||||
|
|
|
||||||
|
|
@ -57,7 +57,7 @@ function common_setup_file() {
|
||||||
function setup_libs() {
|
function setup_libs() {
|
||||||
local lib
|
local lib
|
||||||
# Use a loop to allow convenient short-circuiting for some test files
|
# Use a loop to allow convenient short-circuiting for some test files
|
||||||
for lib in "log" "utilities" "helpers" "search" "preexec" "colors"; do
|
for lib in "log" "utilities" "helpers" "search" "preexec" "colors" "command_duration"; do
|
||||||
load "${BASH_IT?}/lib/${lib}.bash" || return
|
load "${BASH_IT?}/lib/${lib}.bash" || return
|
||||||
# shellcheck disable=SC2015 # short-circuit if we've reached the requested library
|
# shellcheck disable=SC2015 # short-circuit if we've reached the requested library
|
||||||
[[ "${lib}" == "${1:-}" ]] && return 0 || true
|
[[ "${lib}" == "${1:-}" ]] && return 0 || true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue