view tests/test-bundle.py @ 78:031cbb8d4f65

examples: add simple stat-gathering example
author Matt Mackall <mpm@selenic.com>
date Wed, 09 Nov 2011 14:07:29 -0600
parents 29d01b5dc38c
children 4359cabcb0cc
line wrap: on
line source

import common

class test_bundle(common.basetest):
    def test_no_changes(self):
        self.append('a', 'a')
        rev, node0 = self.client.commit('first', addremove=True)
        self.assertFalse(self.client.bundle('bundle', destrepo='.'))

    def test_basic(self):
        self.append('a', 'a')
        rev, node0 = self.client.commit('first', addremove=True)
        self.client.clone(dest='other')

        self.append('a', 'a')
        rev, node1 = self.client.commit('second')

        self.assertTrue(self.client.bundle('bundle', destrepo='other'))