view tests/test-init.py @ 147:98829bf71f10

util: define BytesIO in one place
author Matt Mackall <mpm@selenic.com>
date Fri, 13 Mar 2015 12:28:06 -0500
parents 4359cabcb0cc
children c1b966866ed7
line wrap: on
line source

import hglib, common, shutil
from hglib.util import b

class test_init(common.basetest):
    def test_exists(self):
        self.assertRaises(hglib.error.CommandError, hglib.init)

    def test_basic(self):
        self.client.close()
        self.client = None
        shutil.rmtree('.hg')

        self.client = hglib.init().open()
        self.assertTrue(self.client.root().endswith(b('test_init')))