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

  • Committer: John Arbash Meinel
  • Date: 2007-05-08 20:00:50 UTC
  • mfrom: (2477.1.13 0.16-release)
  • mto: This revision was merged to the branch mainline in revision 2484.
  • Revision ID: john@arbash-meinel.com-20070508200050-4imwmtzep8fx5v7w
Merge the 0.16 release fixes back into bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
        d = fmt.open(self.transport)
99
99
        self.assertIsInstance(d, BzrDir)
100
100
 
 
101
    def test_remote_branch_repr(self):
 
102
        b = BzrDir.open_from_transport(self.transport).open_branch()
 
103
        self.assertStartsWith(str(b), 'RemoteBranch(')
 
104
 
101
105
 
102
106
class FakeProtocol(object):
103
107
    """Lookalike SmartClientRequestProtocolOne allowing body reading tests."""