Files
openwrt-travelmate-login/test/functions.sh
eneller 12bfaa2dfe fix: source functions
sourcing /lib/functions so uci_get is in scope
2025-11-22 22:36:49 +01:00

10 lines
211 B
Bash

# create a symlink to this file at /lib/functions.sh for testing
# mock implementation of uci_get that always returns the default value
uci_get() {
for item in "$@"; do
last=$item
done
echo "$last"
}