add test for using docker cli

This commit is contained in:
Frederik Ring
2021-07-11 13:27:01 +02:00
parent 8a385d22aa
commit da75d232f4
5 changed files with 81 additions and 11 deletions

15
test/test.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/sh
set -e
for dir in $(ls -d -- */); do
test="${dir}run.sh"
echo "################################################"
echo "Now running $test"
echo "################################################"
echo ""
/bin/sh $test
echo ""
echo "$test passed"
echo ""
done