(self)
| 1713 | runner.close_proc_stdin() |
| 1714 | |
| 1715 | def closes_process_stdin(self): |
| 1716 | runner = Local(Context()) |
| 1717 | runner.process = Mock() |
| 1718 | runner.using_pty = False |
| 1719 | runner.close_proc_stdin() |
| 1720 | runner.process.stdin.close.assert_called_once_with() |
| 1721 | |
| 1722 | class timeout: |
| 1723 | @patch("invoke.runners.os") |
nothing calls this directly
no test coverage detected