Add a test to check for README.md, but don't run it.

This commit is contained in:
Lars Brinkhoff 2016-10-25 07:24:23 +02:00
parent c54dcb33f6
commit f40b95e449

View File

@ -40,6 +40,16 @@ test_commits() {
echo OK
}
test_readme() {
echo -n "Checking that every directory has a README.md... "
for i in *; do
if test -d "$i"; then
test -f "$i/README.md" || error "The $i directory has no README.md."
fi
done
}
test_directory_size
test_commits