zsh-auto-notify/tests/test_auto_notify.zunit
Michael Aquilina a0316d35b0
Add basic tests
2019-07-14 11:14:24 +01:00

15 lines
303 B
Plaintext

#!/usr/bin/env zunit
@setup {
load "../auto-notify.plugin.zsh"
}
@test 'version exported' {
assert "$AUTO_NOTIFY_VERSION" is_not_empty
}
@test 'hook functions are loaded by default' {
assert '_auto_notify_track' in $preexec_functions
assert '_auto_notify_send' in $precmd_functions
}