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

  • Committer: Martin Pool
  • Date: 2007-04-01 06:19:16 UTC
  • mfrom: (2323.5.20 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: mbp@sourcefrog.net-20070401061916-plpgsxdf8g7gll9o
Merge 0.15 final release back to trunk, including: recommend upgrades of old workingtrees, handle multiple http redirections, some dirstate fixes, 

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        return wt
64
64
 
65
65
    def test_read_bundle_from_url(self):
66
 
        self._captureVar('BZR_NO_SMART_VFS', None)
 
66
        self._captureVar('NO_SMART_VFS', None)
67
67
        wt = self.create_test_bundle()
68
68
        if wt is None:
69
69
            return
75
75
    def test_read_fail(self):
76
76
        # Trying to read from a directory, or non-bundle file
77
77
        # should fail with NotABundle
78
 
        self._captureVar('BZR_NO_SMART_VFS', None)
 
78
        self._captureVar('NO_SMART_VFS', None)
79
79
        wt = self.create_test_bundle()
80
80
        if wt is None:
81
81
            return