(self)
| 103 | self.assertEqual(resp.body, b'hello\n-t\n') |
| 104 | |
| 105 | def test_close(self): |
| 106 | input_wrapper = InputWrapper(None) |
| 107 | self.assertRaises(AssertionError, input_wrapper.close) |
| 108 | |
| 109 | def test_iter(self): |
| 110 | data = to_bytes("A line\nAnother line\nA final line\n") |
nothing calls this directly
no test coverage detected