(self)
| 3818 | self.assertIsNone(length) |
| 3819 | |
| 3820 | def test_none(self): |
| 3821 | length = determine_content_length(None) |
| 3822 | self.assertEqual(length, 0) |
| 3823 | |
| 3824 | def test_basic_len_obj(self): |
| 3825 | class HasLen: |
nothing calls this directly
no test coverage detected