summaryrefslogtreecommitdiff
path: root/t/README
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2010-10-31 07:33:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-09 22:47:17 (GMT)
commitfb3340a6a7a956debcac92cd21cbcaea0928048e (patch)
tree2668194283dd1a8bc51d072c91ee0898f59f4927 /t/README
parent2dec68cf8fec760930c3bc9d13beb17e381d70a3 (diff)
downloadgit-fb3340a6a7a956debcac92cd21cbcaea0928048e.zip
git-fb3340a6a7a956debcac92cd21cbcaea0928048e.tar.gz
git-fb3340a6a7a956debcac92cd21cbcaea0928048e.tar.bz2
test-lib: introduce test_line_count to measure files
Some tests check their output with code like the following: test "$(git ls-files -u B | wc -l)" -eq 3 || { echo "BAD: should have left stages for B" return 1 } The verbose failure condition is used because test, unlike diff, does not print any useful information about the nature of the failure when it fails. Introduce a test_line_count function to help. If used like git ls-files -u B >output && test_line_count -eq 3 output it will produce output like test_line_count: line count for output !-eq 3 100644 b023018cabc396e7692c70bbf5784a93d3f738ab 2 hi.c 100644 45b983be36b73c0788dc9cbcb76cbb80fc7bb057 3 hi.c on failure. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/README')
-rw-r--r--t/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/README b/t/README
index 2aceb67..1a78982 100644
--- a/t/README
+++ b/t/README
@@ -500,6 +500,10 @@ library for your script to use.
<expected> file. This behaves like "cmp" but produces more
helpful output when the test is run with "-v" option.
+ - test_line_count (= | -lt | -ge | ...) <length> <file>
+
+ Check whether a file has the length it is expected to.
+
- test_path_is_file <file> [<diagnosis>]
test_path_is_dir <dir> [<diagnosis>]
test_path_is_missing <path> [<diagnosis>]