rename tests so they make more sense

This commit is contained in:
Brian Seymour 2021-01-22 02:31:48 -06:00
parent ca59f7e882
commit e3473f99df
29 changed files with 50 additions and 50 deletions

11
lxc/tests/paradoc.sh Normal file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env bash
# add paradoc module to python python
export PYTHONPATH=$PYTHONPATH:/opt/paradoc
# file for test code
test_code=/tmp/paradoc.test
# save test code to file
echo -n iP>$test_code
# pass param to paradoc module and have it print it
echo good | python3.8 -m paradoc $test_code
# clean test code
rm -f $test_code