make sure skeleton tests are separate for (future) project tests

This commit is contained in:
numzero 2026-04-18 16:23:47 +03:00
parent 7baefc958d
commit af79b01fff
7 changed files with 4 additions and 0 deletions

View File

@ -52,6 +52,7 @@ git remote remove origin
# remove this script from the project (but keep on disk for now)
git rm --cached init.sh
git rm -r skel-test
# escape HTML special characters (&, <, and >), but also sed special characters (& again, \, and /)
htmlname=$(echo -n "$name" | sed 's/&/\&amp;/g; s/</\&lt;/g; s/>/\&gt;/g; s:[\\/&]:\\&:g')

3
skel-test/README.md Normal file
View File

@ -0,0 +1,3 @@
# Self-tests
This directory contains self-tests for the skeleton itself. It should be removed when starting a new project.