diff options
author | Lars Hjemli <hjemli@gmail.com> | 2007-11-11 13:17:13 +0100 |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2007-11-11 13:17:13 +0100 |
commit | a7cf406c802394460cb14c79f3f43582d1428a45 (patch) | |
tree | 71f3069c782698ae2972459258d551055f502c4f /tests/t0104-tree.sh | |
parent | ab21082c21867e035cd925a06d6d55fb3143d883 (diff) | |
parent | 2ff33a8a0405b420cd75e0e207c7efeecd6f130b (diff) |
Merge branch 'lh/testsuite'
* lh/testsuite:
Set commit date on snapshot contents
Fix html error detected by test-suite
Create initial testsuite
Diffstat (limited to 'tests/t0104-tree.sh')
-rwxr-xr-x | tests/t0104-tree.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/t0104-tree.sh b/tests/t0104-tree.sh new file mode 100755 index 0000000..2516c72 --- /dev/null +++ b/tests/t0104-tree.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +. ./setup.sh + +prepare_tests "Check content on tree page" + +run_test 'generate bar/tree' 'cgit_url "bar/tree" >trash/tmp' +run_test 'find file-1' 'grep -e "file-1" trash/tmp' +run_test 'find file-50' 'grep -e "file-50" trash/tmp' + +run_test 'generate bar/tree/file-50' 'cgit_url "bar/tree/file-50" >trash/tmp' + +run_test 'find line 1' ' + grep -e "<a id=.n1. name=.n1. href=.#n1.>1</a>" trash/tmp +' + +run_test 'no line 2' ' + grep -e "<a id=.n2. name=.n2. href=.#n2.>2</a>" trash/tmp +' + +tests_done |