(self, fun, *args, **kwargs)
| 246 | return script(TEST_CONFIG, self, self._state).RunSteps([step_class], args) |
| 247 | |
| 248 | def Call(self, fun, *args, **kwargs): |
| 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)) |