mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-10-03 08:41:39 +00:00
12 lines
262 B
Bash
Executable File
12 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Test util functions.
|
|
|
|
assert_equals() {
|
|
# Test equality.
|
|
local status
|
|
[[ "$1" == "$2" ]] && status="✔"
|
|
printf "%s\\n" " ${status:-✖} : ${FUNCNAME[1]}"
|
|
[[ "$1" == "$2" ]] || { :>/tmp/err; return 1; } && return 0
|
|
}
|