Move unrelated test to another relevant place

This commit is contained in:
Adrien Ferrand 2019-02-18 18:10:13 +01:00
parent ffa3b1b52e
commit 5761c123e5
2 changed files with 5 additions and 5 deletions

View file

@ -37,8 +37,3 @@ if [ "$REVOKED" != 1 ] ; then
echo "Did not find one revoked cert as expected ($REVOKED)"
exit 1
fi
if ! letsencrypt-auto --help --no-self-upgrade | grep -F "letsencrypt-auto [SUBCOMMAND]"; then
echo "letsencrypt-auto not included in help output!"
exit 1
fi

View file

@ -5,3 +5,8 @@
cd letsencrypt
# help installs virtualenv and does nothing else
./letsencrypt-auto-source/letsencrypt-auto -v --debug --help all
if ! ./letsencrypt-auto-source/letsencrypt-auto --help --no-self-upgrade | grep -F "letsencrypt-auto [SUBCOMMAND]"; then
echo "letsencrypt-auto not included in help output!"
exit 1
fi