summaryrefslogtreecommitdiff
path: root/t/annotate-tests.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-03-06 00:41:17 -0800
committerJunio C Hamano <junkio@cox.net>2006-03-06 00:41:17 -0800
commit1242642c468a7bcc335a676273eae4ced8a55f04 (patch)
tree776489294e6c377d880b4661575d049d11ddaaf2 /t/annotate-tests.sh
parent690e307f54b4aa84349b89e8552b25e7495f1cd6 (diff)
downloadgit-1242642c468a7bcc335a676273eae4ced8a55f04.tar.gz
annotate-blame: tests incomplete lines.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/annotate-tests.sh')
-rw-r--r--t/annotate-tests.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/t/annotate-tests.sh b/t/annotate-tests.sh
index 8cb32e156b..9c5a15a15e 100644
--- a/t/annotate-tests.sh
+++ b/t/annotate-tests.sh
@@ -100,3 +100,22 @@ test_expect_success \
'Two lines blamed on A, one on B, two on B1, one on B2, one on A U Thor' \
'check_count A 2 B 1 B1 2 B2 1 "A U Thor" 1'
+test_expect_success \
+ 'an incomplete line added' \
+ 'echo "incomplete" | tr -d "\\012" >>file &&
+ GIT_AUTHOR_NAME="C" git commit -a -m "Incomplete"'
+
+test_expect_success \
+ 'With incomplete lines.' \
+ 'check_count A 2 B 1 B1 2 B2 1 "A U Thor" 1 C 1'
+
+test_expect_success \
+ 'some edit' \
+ 'mv file file1 &&
+ sed -e 1d -e "5s/3A/99/" file1 >file &&
+ rm -f file1 &&
+ GIT_AUTHOR_NAME="D" git commit -a -m "edit"'
+
+test_expect_success \
+ 'some edit' \
+ 'check_count A 1 B 1 B1 1 B2 1 "A U Thor" 1 C 1 D 1'