first commit

This commit is contained in:
2025-04-09 21:43:00 +02:00
commit af5be2794d
39 changed files with 1947 additions and 0 deletions

13
xxx/app/test.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
#export PERL5LIB=`pwd`
if [[ $1 == "all" ]]; then
prove -l t/*.t
else
if [[ -f t/$1.t ]]; then
prove -l -v t/$1.t
else
prove -l -v t/*.t
fi
fi