add tests, 05 is broken

This commit is contained in:
gitGnome
2026-03-30 10:42:11 +02:00
parent c5fc74d142
commit 9fb5f952c5
12 changed files with 280 additions and 6 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# Clean up state file left by test scripts
DIR="$(dirname "$0")"
STATE_FILE="$DIR/.state"
if [[ -f "$STATE_FILE" ]]; then
echo "Removing $STATE_FILE"
rm "$STATE_FILE"
echo "Done."
else
echo "Nothing to clean up."
fi