~jelmer/bzr-svn/0.6

« back to all changes in this revision

Viewing changes to tests/test_checkout.py

  • Committer: Jelmer Vernooij
  • Date: 2009-07-27 00:55:02 UTC
  • Revision ID: jelmer@samba.org-20090727005502-fhf64bq4vtun8xqb
Formatting fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
from bzrlib.plugins.svn.tests import SubversionTestCase
30
30
 
31
31
class TestWorkingTreeFormat(TestCase):
 
32
    
32
33
    def setUp(self):
33
34
        super(TestWorkingTreeFormat, self).setUp()
34
35
        self.format = SvnWorkingTreeFormat(4)
45
46
 
46
47
 
47
48
class TestCheckoutFormat(TestCase):
 
49
 
48
50
    def setUp(self):
49
51
        super(TestCheckoutFormat, self).setUp()
50
52
        self.format = SvnWorkingTreeDirFormat()
58
60
 
59
61
 
60
62
class TestCheckout(SubversionTestCase):
 
63
 
61
64
    def test_not_for_writing(self):
62
65
        self.make_client("d", "dc")
63
66
        x = BzrDir.create_branch_convenience("dc/foo")