[PATCH 1 of 8] test-revert: drop useless comment

Pierre-Yves David pierre-yves.david at ens-lyon.org
Mon Aug 11 13:39:47 CDT 2014


# HG changeset patch
# User Pierre-Yves David <pierre-yves.david at fb.com>
# Date 1403708361 -3600
#      Wed Jun 25 15:59:21 2014 +0100
# Node ID 19b0133c70f71c940b644573048321b4846e0ddc
# Parent  fff8e1cec90f64b356c66aa068d3810f7efea0ac
test-revert: drop useless comment

There is multiple comments explaining the expected output of commands. This is
old relic of pre-unified test era. We remove them for uselessness.

diff --git a/tests/test-revert.t b/tests/test-revert.t
--- a/tests/test-revert.t
+++ b/tests/test-revert.t
@@ -17,91 +17,64 @@ nothing changed
 Introduce some changes and revert them
 --------------------------------------
 
   $ echo 123 > b
 
-should show b unknown
-
   $ hg status
   ? b
   $ echo 12 > c
 
-should show b unknown and c modified
-
   $ hg status
   M c
   ? b
   $ hg add b
 
-should show b added and c modified
-
   $ hg status
   M c
   A b
   $ hg rm a
 
-should show a removed, b added and c modified
-
   $ hg status
   M c
   A b
   R a
 
 revert removal of a file
 
   $ hg revert a
-
-should show b added, copy saved, and c modified
-
   $ hg status
   M c
   A b
 
 revert addition of a file
 
   $ hg revert b
-
-should show b unknown, and c modified
-
   $ hg status
   M c
   ? b
 
 revert modification of a file (--no-backup)
 
   $ hg revert --no-backup c
-
-should show unknown: b
-
   $ hg status
   ? b
 
 revert deletion (! status) of a added file
 ------------------------------------------
 
   $ hg add b
 
-should show b added
-
   $ hg status b
   A b
   $ rm b
-
-should show b deleted
-
   $ hg status b
   ! b
   $ hg revert -v b
   forgetting b
-
-should not find b
-
   $ hg status b
   b: * (glob)
 
-should show a c e
-
   $ ls
   a
   c
   e
 
@@ -185,24 +158,20 @@ revert of exec bit
 #if execbit
   $ chmod +x c
   $ hg revert --all
   reverting c
 
-should print non-executable
-
   $ test -x c || echo non-executable
   non-executable
 
   $ chmod +x c
   $ hg commit -m exe
 
   $ chmod -x c
   $ hg revert --all
   reverting c
 
-should print executable
-
   $ test -x c && echo executable
   executable
 #endif
 
   $ cd ..


More information about the Mercurial-devel mailing list