mirror of
https://github.com/wolfcw/libfaketime.git
synced 2026-05-17 08:36:28 +03:00
14 lines
164 B
Bash
14 lines
164 B
Bash
# check that the date doesn't happen to be 0.
|
|
|
|
run()
|
|
{
|
|
run_testcase nulltest
|
|
}
|
|
|
|
nulltest()
|
|
{
|
|
typeset tdate=${I2DATES[0]}
|
|
|
|
assertneq 0 "$(date +%s)" "($tdate)"
|
|
}
|