(self)
| 120 | p.expect_exact([1, b'2']) |
| 121 | |
| 122 | def test_timeout_none(self): |
| 123 | p = PopenSpawn('echo abcdef', timeout=None) |
| 124 | p.expect('abc') |
| 125 | p.expect_exact('def') |
| 126 | p.expect(pexpect.EOF) |
| 127 | |
| 128 | def test_crlf(self): |
| 129 | p = PopenSpawn('echo alpha beta') |
nothing calls this directly
no test coverage detected