diff tests/test-topic-stack.t @ 3060:f43a310c4338

topics: show changesetcount, troubledcount and headscount by default
author Pulkit Goyal <7895pulkit@gmail.com>
date Fri, 13 Oct 2017 10:18:52 +0530
parents d9e998120771
children 144989dabe93
line wrap: on
line diff
--- a/tests/test-topic-stack.t	Fri Oct 13 10:01:38 2017 +0530
+++ b/tests/test-topic-stack.t	Fri Oct 13 10:18:52 2017 +0530
@@ -66,8 +66,8 @@
 After changing the phase of all the changesets in "other" to public, the topic should still be active, but is empty. We should be better at informating the user about it and displaying good data in this case.
 
   $ hg topic
-     foo
-   * other
+     foo   (4 changesets)
+   * other (0 changesets)
   $ hg stack
   ### topic: other
   ### target: default (branch)
@@ -84,7 +84,7 @@
 'hg stack' list all changeset in the topic
 
   $ hg topic
-   * foo
+   * foo (4 changesets)
   $ hg stack
   ### topic: foo
   ### target: default (branch)
@@ -206,7 +206,7 @@
 check that topics and stack are available even if ui.strict=true
 
   $ hg topics
-   * foo
+   * foo (4 changesets)
   $ hg stack
   ### topic: foo
   ### target: default (branch)
@@ -216,7 +216,7 @@
   t1: c_c
   t0^ c_b (base)
   $ hg topics --config ui.strict=true
-   * foo
+   * foo (4 changesets)
   $ hg stack --config ui.strict=true
   ### topic: foo
   ### target: default (branch)