(self)
| 130 | assert p.read() == b'alpha beta' + p.crlf |
| 131 | |
| 132 | def test_crlf_encoding(self): |
| 133 | p = PopenSpawn('echo alpha beta', encoding='utf-8') |
| 134 | assert p.read() == 'alpha beta' + p.crlf |
| 135 | |
| 136 | if __name__ == '__main__': |
| 137 | unittest.main() |
nothing calls this directly
no test coverage detected