]> git.proxmox.com Git - libgit2.git/blobdiff - tests/patch/print.c
New upstream version 1.1.0+dfsg.1
[libgit2.git] / tests / patch / print.c
index 4703c1d51c77313b52f748d909a47c24b9af2eb9..b0a9339436de3608ba52951804ed5d0815a03e8f 100644 (file)
@@ -107,6 +107,12 @@ void test_patch_print__rename_exact(void)
                strlen(PATCH_RENAME_EXACT));
 }
 
+void test_patch_print__rename_exact_with_mode(void)
+{
+       patch_print_from_patchfile(PATCH_RENAME_EXACT_WITH_MODE,
+               strlen(PATCH_RENAME_EXACT_WITH_MODE));
+}
+
 void test_patch_print__rename_similar(void)
 {
        patch_print_from_patchfile(PATCH_RENAME_SIMILAR,
@@ -172,3 +178,9 @@ void test_patch_print__binary_not_shown(void)
        patch_print_from_patchfile(PATCH_BINARY_NOT_PRINTED,
                strlen(PATCH_BINARY_NOT_PRINTED));
 }
+
+void test_patch_print__binary_add_not_shown(void)
+{
+       patch_print_from_patchfile(PATCH_ADD_BINARY_NOT_PRINTED,
+               strlen(PATCH_ADD_BINARY_NOT_PRINTED));
+}