]> git.cameronkatri.com Git - cgit.git/blobdiff - tests/t0101-index.sh
tests/setup.sh: cleanup test script output and logging
[cgit.git] / tests / t0101-index.sh
index 12ed00c4e4574cf36a63996a08c3169284562e29..445af6a6f0b48a3774c8778f4cbf12c73d88d00e 100755 (executable)
@@ -6,8 +6,10 @@ prepare_tests "Check content on index page"
 
 run_test 'generate index page' 'cgit_url "" >trash/tmp'
 run_test 'find foo repo' 'grep -e "foo" trash/tmp'
+run_test 'find foo description' 'grep -e "\[no description\]" trash/tmp'
 run_test 'find bar repo' 'grep -e "bar" trash/tmp'
-run_test 'no tree-link' 'grep -ve "foo/tree" trash/tmp'
-run_test 'no log-link' 'grep -ve "foo/log" trash/tmp'
+run_test 'find bar description' 'grep -e "the bar repo" trash/tmp'
+run_test 'no tree-link' '! grep -e "foo/tree" trash/tmp'
+run_test 'no log-link' '! grep -e "foo/log" trash/tmp'
 
 tests_done