Add initial support for many promisor remotes
[gitweb.git] / t / t4211-line-log.sh
index c9f2036f6881467a727104d62d126594b08aab8b..1db7bd0f59b46768d6559c37e026cde41821763a 100755 (executable)
@@ -122,4 +122,14 @@ test_expect_success '-s shows only line-log commits' '
        test_cmp expect actual
 '
 
+test_expect_success '-p shows the default patch output' '
+       git log -L1,24:b.c >expect &&
+       git log -L1,24:b.c -p >actual &&
+       test_cmp expect actual
+'
+
+test_expect_success '--raw is forbidden' '
+       test_must_fail git log -L1,24:b.c --raw
+'
+
 test_done