/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/test_bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-09 06:39:13 UTC
  • mfrom: (1596.2.6 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060309063913-6d8ce700706d0802
Merge knit performance stage 1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
        bzrdir.BzrDirFormat.register_format(format)
145
145
        # which bzrdir.Open will refuse (not supported)
146
146
        self.assertRaises(UnsupportedFormatError, bzrdir.BzrDir.open, url)
 
147
        # which bzrdir.open_containing will refuse (not supported)
 
148
        self.assertRaises(UnsupportedFormatError, bzrdir.BzrDir.open_containing, url)
147
149
        # but open_downlevel will work
148
150
        t = get_transport(url)
149
151
        self.assertEqual(format.open(t), bzrdir.BzrDir.open_unsupported(url))