(self)
| 143 | assert self.c.cwd == os.path.join("a", "b") |
| 144 | |
| 145 | def nested_absolute_path(self): |
| 146 | self.c.command_cwds = ["a", "/b", "c"] |
| 147 | assert self.c.cwd == os.path.join("/b", "c") |
| 148 | |
| 149 | def multiple_absolute_paths(self): |
| 150 | self.c.command_cwds = ["a", "/b", "c", "/d", "e"] |