(self, parameters, environment_variables=None)
| 42 | self._process_invoker = process_invoker |
| 43 | |
| 44 | def send(self, parameters, environment_variables=None): |
| 45 | full_command = self.command + parameters |
| 46 | self._process_invoker.invoke(full_command, environment_variables=environment_variables) |
| 47 | |
| 48 | def __str__(self, *args, **kwargs): |
| 49 | return 'Script: ' + str(self.command) |