view tests/test-paths.py @ 102:cc2b7540fa2b 0.2

tests: don't set the time zone There seems to be no need and it misbehaves on Windows.
author Idan Kamara <idankk86@gmail.com>
date Wed, 18 Jan 2012 00:39:25 +0200
parents eac8be119d81
children e738d6fe5f3f
line wrap: on
line source

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'))