This repository has been archived on 2024-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
bunc/test/test-msg.sh
ayakael fca165b274
* Changed name for _log function to _msg, added bail() function.
* Created _ansi function library to set terminal properties like
  cursor position and text color.
* Created _if function library, a set of simple if statements.
  Added _if_array_contains, _if_is_integer, _if_is defined,
  if_has_value
2018-01-06 20:30:09 -09:00

28 lines
446 B
Bash

#!/bin/bash
source ../lib/if.sh
source ../lib/ansi.sh
source ../lib/msg.sh
clean() {
return 0
}
echo "Starting test for log library"
_msg ECHO "Testing echo"
sleep 1
_msg EXEC "Testing EXEC w/ OK"
sleep 1
_msg OK
sleep 1
_msg EXEC "Testing EXEC w/ WARN"
sleep 1
_msg WARN "This is a WARN"
sleep 1
_msg EXEC "Testing EXEC w/ FAIL"
sleep 1
_msg FAIL "This is a FAIL"
sleep 1
_msg INDENT +1
_msg EXEC "This is EXEC w/ indent of 1"
sleep 1
_msg OK