~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-13 04:12:12 UTC
  • mfrom: (2484.1.25 knit_index_pyrex)
  • Revision ID: pqm@pqm.ubuntu.com-20070713041212-ar46c24wgu0jhtm5
(John Arbash Meinel) Implement _KnitIndex._load_data in pyrex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
135
135
        t_b = t_a.clone('b')
136
136
        self.assertRaises(NoSuchFile, t_b.ensure_base)
137
137
 
138
 
    def test_external_url(self):
139
 
        """.external_url either works or raises InProcessTransport."""
140
 
        t = self.get_transport()
141
 
        try:
142
 
            t.external_url()
143
 
        except errors.InProcessTransport:
144
 
            pass
145
 
 
146
138
    def test_has(self):
147
139
        t = self.get_transport()
148
140