/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/bzrdir_implementations/test_bzrdir.py

  • Committer: Andrew Bennetts
  • Date: 2006-08-09 05:27:23 UTC
  • mto: (2018.5.1 split-smart)
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20060809052723-1aeefb036ba10880
Implement RemoteBzrDir.create_{branch,workingtree}

Show diffs side-by-side

added added

removed removed

Lines of Context:
882
882
        t = get_transport(self.get_url())
883
883
        made_control = self.bzrdir_format.initialize(t.base)
884
884
        made_repo = made_control.create_repository()
885
 
        self.failUnless(isinstance(made_repo, repository.Repository))
 
885
        # Check that we have a repository object.
 
886
        made_repo.has_revision('foo')
 
887
 
886
888
        self.assertEqual(made_control, made_repo.bzrdir)
887
889
 
888
890
    def test_create_repository_shared(self):