zk/tests/test_isosec.sh

16 lines
278 B
Bash
Raw Permalink Normal View History

2023-12-08 17:01:28 +00:00
#!/bin/bash
setup() {
source ../zk
}
test_isosec_calls_date_with_correct_parameters() {
expected="date -u +%Y%m%d%H%M%S"
# shellcheck disable=SC2016
fake date echo 'date ${FAKE_PARAMS[@]}'
result="$(_zk_isosec)"
assert_equals "$expected" "$result"
}