(self)
| 652 | self.assertEqual(self.client.nlst(), NLST_DATA.split('\r\n')[:-1]) |
| 653 | |
| 654 | def test_dir(self): |
| 655 | l = [] |
| 656 | self.client.dir(l.append) |
| 657 | self.assertEqual(''.join(l), LIST_DATA.replace('\r\n', '')) |
| 658 | |
| 659 | def test_mlsd(self): |
| 660 | list(self.client.mlsd()) |
nothing calls this directly
no test coverage detected