(self)
| 97 | os.mkdir("../TestFiles/") |
| 98 | |
| 99 | def test_ls(self): |
| 100 | parentDir = "data://.my/" |
| 101 | newDir = "test" |
| 102 | |
| 103 | CLI().mkdir(parentDir + newDir, self.client) |
| 104 | result = CLI().ls(parentDir, self.client) |
| 105 | self.assertTrue(result is not None and "moredata" in result and newDir in result) |
| 106 | |
| 107 | CLI().rmdir(parentDir + newDir, self.client) |
| 108 | |
| 109 | def test_mkdir(self): |
| 110 |