diff tests/mockblackbox.py @ 24705:0ead0a07ed9c

tests: move mock blackbox extension into own file Having all blackbox log testing in test-blackbox.t isn't scalable. Move the mock blackbox extension into its own file so we can start to move blackbox logging into other tests.
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 13 Apr 2015 09:36:33 -0400
parents
children ac49ecb2a897
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/mockblackbox.py	Mon Apr 13 09:36:33 2015 -0400
@@ -0,0 +1,11 @@
+from mercurial import util
+
+def makedate():
+    return 0, 0
+def getuser():
+    return 'bob'
+
+# mock the date and user apis so the output is always the same
+def uisetup(ui):
+    util.makedate = makedate
+    util.getuser = getuser