status: add --porcelain output format
[gitweb.git] / t / t6040-tracking-info.sh
index 2a2b6b63d50313775226d6fe55bca846a067a263..664b0f805288863955d8b6389c95f0f8f542f136 100755 (executable)
@@ -58,7 +58,7 @@ test_expect_success 'checkout' '
        grep "have 1 and 1 different" actual
 '
 
-test_expect_failure 'checkout with local tracked branch' '
+test_expect_success 'checkout with local tracked branch' '
        git checkout master &&
        git checkout follower >actual
        grep "is ahead of" actual
@@ -69,10 +69,24 @@ test_expect_success 'status' '
                cd test &&
                git checkout b1 >/dev/null &&
                # reports nothing to commit
-               test_must_fail git status
+               test_must_fail git commit --dry-run
        ) >actual &&
        grep "have 1 and 1 different" actual
 '
 
+test_expect_success 'status when tracking lightweight tags' '
+       git checkout master &&
+       git tag light &&
+       git branch --track lighttrack light >actual &&
+       grep "set up to track" actual &&
+       git checkout lighttrack
+'
 
+test_expect_success 'status when tracking annotated tags' '
+       git checkout master &&
+       git tag -m heavy heavy &&
+       git branch --track heavytrack heavy >actual &&
+       grep "set up to track" actual &&
+       git checkout heavytrack
+'
 test_done