~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testmerge.py

- fix up imports in remotebranch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from bzrlib.branch import Branch
2
 
from bzrlib.commit import commit
3
 
from bzrlib.selftest import TestCaseInTempDir
4
 
from bzrlib.merge import merge
5
 
class TestMerge(TestCaseInTempDir):
6
 
    """Test appending more than one revision"""
7
 
    def test_pending(self):
8
 
        br = Branch(".", init=True)
9
 
        commit(br, "lala!")
10
 
        self.assertEquals(len(br.pending_merges()), 0)
11
 
        merge(['.', -1], [None, None])
12
 
        self.assertEquals(len(br.pending_merges()), 0)