(self, cmd, env=None, buffer_output=True)
| 72 | self.files[abpath] = contents |
| 73 | |
| 74 | def Call(self, cmd, env=None, buffer_output=True): |
| 75 | self.calls.append(cmd) |
| 76 | if self.cmds: |
| 77 | return self.cmds.pop(0) |
| 78 | return 0, '', '' |
| 79 | |
| 80 | def Print(self, *args, **kwargs): |
| 81 | sep = kwargs.get('sep', ' ') |
no test coverage detected