Merge branch 'js/mingw-isatty'
[gitweb.git] / t / t5100-mailinfo.sh
index e6b995161e0fd15493bdaf4e5a5df2a3c2990798..7171f67539bfafcb17d2d2fcb2f4ba4856c1131c 100755 (executable)
@@ -158,4 +158,17 @@ test_expect_success 'mailinfo handles rfc2822 comment' '
        test_cmp "$DATA/comment.expect" comment/info
 '
 
+test_expect_success 'mailinfo with mailinfo.scissors config' '
+       test_config mailinfo.scissors true &&
+       (
+               mkdir sub &&
+               cd sub &&
+               git mailinfo ../msg0014.sc ../patch0014.sc <../0014 >../info0014.sc
+       ) &&
+       test_cmp "$DATA/msg0014--scissors" msg0014.sc &&
+       test_cmp "$DATA/patch0014--scissors" patch0014.sc &&
+       test_cmp "$DATA/info0014--scissors" info0014.sc
+'
+
+
 test_done