no submod

This commit is contained in:
Bel LaPointe
2023-04-17 11:20:05 -06:00
parent 026e7718ed
commit 8970da11e5
60 changed files with 4326 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#! /bin/bash
test_path() {
cache path abc | tr '/' '\n' | tail -n 1 | grep -q .
}
test_get_put_get() {
export CACHE_DURATION=10
! cache get abc
echo hi | cache put abc > /dev/null
cache get abc | grep -q .
}