tests/test-command-template.t
changeset 28374 af3bd9d1dbc1
parent 28373 9a9dd71e882c
child 28546 1987ed32efca
--- a/tests/test-command-template.t	Thu Jun 11 22:58:27 2015 +0900
+++ b/tests/test-command-template.t	Thu Jun 11 23:04:14 2015 +0900
@@ -3183,6 +3183,13 @@
   $ hg log --color=always -l 1 --template '{label(red, "text\n")}'
   \x1b[0;31mtext\x1b[0m (esc)
 
+label should be no-op if color is disabled:
+
+  $ hg log --color=never -l 1 --template '{label(red, "text\n")}'
+  text
+  $ hg log --config extensions.color=! -l 1 --template '{label(red, "text\n")}'
+  text
+
 Test branches inside if statement:
 
   $ hg log -r 0 --template '{if(branches, "yes", "no")}\n'