(self)
| 623 | self.assertTrue(flag) |
| 624 | |
| 625 | def test_storbinary_rest(self): |
| 626 | data = RETR_DATA.replace('\r\n', '\n').encode(self.client.encoding) |
| 627 | f = io.BytesIO(data) |
| 628 | for r in (30, '30'): |
| 629 | f.seek(0) |
| 630 | self.client.storbinary('stor', f, rest=r) |
| 631 | self.assertEqual(self.server.handler_instance.rest, str(r)) |
| 632 | |
| 633 | def test_storlines(self): |
| 634 | data = RETR_DATA.replace('\r\n', '\n').encode(self.client.encoding) |
nothing calls this directly
no test coverage detected