(self)
| 3810 | self.assertEqual(length, 5) |
| 3811 | |
| 3812 | def test_empty_bytes(self): |
| 3813 | length = determine_content_length(b'') |
| 3814 | self.assertEqual(length, 0) |
| 3815 | |
| 3816 | def test_buffered_io_base(self): |
| 3817 | length = determine_content_length(io.BufferedIOBase()) |
nothing calls this directly
no test coverage detected