diff tests/test-paths.py @ 7:eac8be119d81

tests: rearrange tests and use nosetests - provide package setup/teardown methods that fixes the environment - introduce a basetest that initializes a repository in a temp dir
author Idan Kamara <idankk86@gmail.com>
date Sat, 23 Jul 2011 22:55:39 +0300
parents
children e738d6fe5f3f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tests/test-paths.py	Sat Jul 23 22:55:39 2011 +0300
@@ -0,0 +1,13 @@
+import common, os
+import hglib
+
+class test_paths(common.basetest):
+    def test_basic(self):
+        open('.hg/hgrc', 'a').write('[paths]\nfoo = bar\n')
+
+        # hgrc isn't watched for changes yet, have to reopen
+        self.client = hglib.open()
+        paths = self.client.paths()
+        self.assertEquals(len(paths), 1)
+        self.assertEquals(paths['foo'], os.path.abspath('bar'))
+        self.assertEquals(self.client.paths('foo'), os.path.abspath('bar'))