Test system_raw with non-ascii cmd
(self)
| 681 | |
| 682 | @onlyif_unicode_paths |
| 683 | def test_1(self): |
| 684 | """Test system_raw with non-ascii cmd""" |
| 685 | cmd = """python -c "'åäö'" """ |
| 686 | ip.system_raw(cmd) |
| 687 | |
| 688 | @mock.patch("subprocess.call", side_effect=KeyboardInterrupt) |
| 689 | @mock.patch("os.system", side_effect=KeyboardInterrupt) |
nothing calls this directly
no test coverage detected