Test system_raw with non-ascii cmd
(self)
| 570 | |
| 571 | @onlyif_unicode_paths |
| 572 | def test_1(self): |
| 573 | """Test system_raw with non-ascii cmd |
| 574 | """ |
| 575 | cmd = u'''python -c "'åäö'" ''' |
| 576 | ip.system_raw(cmd) |
| 577 | |
| 578 | @mock.patch('subprocess.call', side_effect=KeyboardInterrupt) |
| 579 | @mock.patch('os.system', side_effect=KeyboardInterrupt) |
nothing calls this directly
no test coverage detected