(self)
| 107 | CLI().rmdir(parentDir + newDir, self.client) |
| 108 | |
| 109 | def test_mkdir(self): |
| 110 | |
| 111 | parentDir = "data://.my/" |
| 112 | newDir = "test" |
| 113 | |
| 114 | CLI().mkdir(parentDir + newDir, self.client) |
| 115 | result = CLI().ls(parentDir, self.client) |
| 116 | self.assertTrue(newDir in result) |
| 117 | |
| 118 | CLI().rmdir(parentDir + newDir, self.client) |
| 119 | |
| 120 | def test_rmdir(self): |
| 121 | parentDir = "data://.my/" |