diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-06-17 12:57:46 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-06-17 12:57:46 +0200 |
commit | 92c9e97e3f9ebe5cf6218611342757ee416743cb (patch) | |
tree | 2ba80312ade3bc21715c887c4fd95245396c98fc /test | |
parent | 2214f8dcceb171f22ba8e0ff8dadf9f801b07951 (diff) |
Added documentation tests
Diffstat (limited to 'test')
-rw-r--r-- | test/documentation | 7 | ||||
-rwxr-xr-x | test/main | 2 |
2 files changed, 9 insertions, 0 deletions
diff --git a/test/documentation b/test/documentation new file mode 100644 index 0000000..61bffa0 --- /dev/null +++ b/test/documentation @@ -0,0 +1,7 @@ +## vim:ft=zsh +alias podchecker='podchecker -warnings -warnings' +echo "# Documentation" +podchecker bin/checklinks +for file in man/*/*; { + podchecker $file +} @@ -4,6 +4,8 @@ setopt err_exit trap "print -P '\n%N:%i: %B%F{red}Test faild!%F{default}%b'" ZERR +source test/documentation + function stringcmp { diff -u <(echo $1) <(echo $2) } |