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

Remove unused no_body_received method on SmartServerRequestHandler.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2291
2291
#        self.assertEqual(calls, smart_protocol.request_handler.calls,
2292
2292
#            "%r was not parsed as expected" % (protocol_bytes,))
2293
2293
#
2294
 
#    def test_request_no_body(self):
2295
 
#        """Parsing a request with no body calls no_body_received on the request
2296
 
#        handler.
2297
 
#        """
2298
 
#        body = (
2299
 
#            'n' # body kind
2300
 
#            )
2301
 
#        self.assertBodyParsingBehaviour([('no_body_received',)], body)
2302
 
#
2303
2294
#    def test_request_prefixed_body(self):
2304
2295
#        """Parsing a request with a length-prefixed body calls
2305
2296
#        prefixed_body_received on the request handler.