~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/test_parent.py

  • Committer: Robert Collins
  • Date: 2005-10-17 21:57:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1462.
  • Revision ID: robertc@robertcollins.net-20051017215732-08f487800e726748
Allow creation of testaments from uncommitted data, and use that to get signatures before committing revisions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
 
18
18
import os
19
 
 
 
19
from bzrlib.selftest import TestCaseInTempDir
20
20
from bzrlib.branch import Branch
21
 
from bzrlib.osutils import abspath, realpath
22
 
from bzrlib.tests import TestCaseWithTransport
 
21
from bzrlib.clone import copy_branch
23
22
 
24
23
 
25
24
"""Tests for Branch parent URL"""
26
25
 
27
26
 
28
 
class TestParent(TestCaseWithTransport):
29
 
 
 
27
class TestParent(TestCaseInTempDir):
30
28
    def test_no_default_parent(self):
31
29
        """Branches should have no parent by default"""
32
 
        b = self.make_branch('.')
 
30
        b = Branch.initialize('.')
33
31
        self.assertEquals(b.get_parent(), None)
34
32
        
 
33
    
35
34
    def test_set_get_parent(self):
36
35
        """Set and then re-get the parent"""
37
 
        b = self.make_branch('.')
 
36
        b = Branch.initialize('.')
38
37
        url = 'http://bazaar-ng.org/bzr/bzr.dev'
39
38
        b.set_parent(url)
40
39
        self.assertEquals(b.get_parent(), url)
 
40
 
 
41
    def test_branch_sets_parent(self):
 
42
        """The branch command should set the new branch's parent"""
 
43
        from bzrlib.commands import run_bzr
 
44
 
 
45
        os.mkdir('from')
 
46
        branch_from = Branch.initialize('from')
 
47
        file('from/foo', 'wt').write('contents of foo')
 
48
        branch_from.add('foo')
 
49
        branch_from.commit('initial commit')
 
50
        
 
51
        os.mkdir('to')
 
52
        copy_branch(branch_from, 'to', None)
 
53
 
 
54
        branch_to = Branch.open('to')
 
55
        abspath = os.path.abspath('from')
 
56
        self.assertEquals(branch_to.get_parent(), abspath)
 
57
        
 
58