(self)
| 215 | # Invalid quoting on windows |
| 216 | @dec.skip_win32 |
| 217 | def test_getoutput_quoted2(self): |
| 218 | out = getoutput("%s -c 'print (1)'" % python) |
| 219 | self.assertEqual(out.strip(), "1") |
| 220 | out = getoutput("%s -c 'print (\"1\")'" % python) |
| 221 | self.assertEqual(out.strip(), "1") |
| 222 | |
| 223 | def test_getoutput_error(self): |
| 224 | out, err = getoutputerror(f'{python} "{self.fname}"') |
nothing calls this directly
no test coverage detected