(self)
| 209 | self.assertEqual(out, "on stdouton stderr") |
| 210 | |
| 211 | def test_getoutput_quoted(self): |
| 212 | out = getoutput('%s -c "print (1)"' % python) |
| 213 | self.assertEqual(out.strip(), "1") |
| 214 | |
| 215 | # Invalid quoting on windows |
| 216 | @dec.skip_win32 |
nothing calls this directly
no test coverage detected