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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-20 02:28:21 UTC
  • mfrom: (1666.1.10 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060420022821-4337b8fa4942d8fe
Make knits the default format.

Show diffs side-by-side

added added

removed removed

Lines of Context:
506
506
        self.check_transport_contents(t.get('f2').read(), t, 'c')
507
507
        self.check_transport_contents(t.get('f3').read(), t, 'd')
508
508
 
 
509
    def test_append_mode(self):
 
510
        # check append accepts a mode
 
511
        t = self.get_transport()
 
512
        if t.is_readonly():
 
513
            return
 
514
        t.append('f', StringIO('f'), mode=None)
 
515
        
509
516
    def test_delete(self):
510
517
        # TODO: Test Transport.delete
511
518
        t = self.get_transport()