tests/test-revert.t
changeset 26938 080276d377d9
parent 25753 fe03f522dda9
child 26969 b54b520a24c2
--- a/tests/test-revert.t	Thu Nov 12 16:56:06 2015 -0600
+++ b/tests/test-revert.t	Thu Nov 12 17:00:08 2015 -0600
@@ -86,6 +86,16 @@
   saving current version of e as e.orig
   reverting e
 
+Test creation of backup (.orig) file in configured file location
+----------------------------------------------------------------
+
+  $ echo z > e
+  $ hg revert --all -v --config 'ui.origbackuppath=.hg/origbackups'
+  creating directory: $TESTTMP/repo/.hg/origbackups
+  saving current version of e as $TESTTMP/repo/.hg/origbackups/e.orig
+  reverting e
+  $ rm -rf .hg/origbackups
+
 revert on clean file (no change)
 --------------------------------