(self)
| 3806 | |
| 3807 | class TestDetermineContentLength(unittest.TestCase): |
| 3808 | def test_basic_bytes(self): |
| 3809 | length = determine_content_length(b'hello') |
| 3810 | self.assertEqual(length, 5) |
| 3811 | |
| 3812 | def test_empty_bytes(self): |
| 3813 | length = determine_content_length(b'') |
nothing calls this directly
no test coverage detected