view tests/test-clone.py @ 186:d06b48001662

package: update package url Replace the package url which was pointing to the repository to the wiki page instead. This way pypi users will directly see the basic usage and can easily find the repository url on the wiki page.
author Boris Feld <boris.feld@octobus.net>
date Wed, 19 Jul 2017 14:48:40 +0200
parents 820d7c1e470a
children
line wrap: on
line source

import os
from tests import common
import hglib
from hglib.util import b

class test_clone(common.basetest):
    def test_basic(self):
        self.append('a', 'a')
        self.client.commit(b('first'), addremove=True)
        cloned = hglib.clone(b('.'), b('cloned'))
        self.assertRaises(ValueError, cloned.log)
        cloned.open()
        self.assertEquals(self.client.log(), cloned.log())

    def test_clone_uncompressed(self):
        hglib.clone(b('.'), b('cloned'), uncompressed=True)