Method
Command
(self, cmd, args="", prefix="", pipe=True, cwd=None)
Source from the content-addressed store, hash-verified
| 249 | print("Calling %s with %s and %s" % (str(fun), str(args), str(kwargs))) |
| 250 | |
| 251 | def Command(self, cmd, args="", prefix="", pipe=True, cwd=None): |
| 252 | print("%s %s" % (cmd, args)) |
| 253 | print("in %s" % cwd) |
| 254 | return self._mock.Call("command", cmd + " " + args, cwd=cwd) |
| 255 | |
| 256 | def ReadLine(self): |
| 257 | return self._mock.Call("readline") |
Callers
nothing calls this directly
Tested by
no test coverage detected