(self)
| 21 | @unittest.skipIf(platform.win32_is_iot(), "starting files is not supported on Windows IoT Core or nanoserver") |
| 22 | class TestCase(unittest.TestCase): |
| 23 | def test_nonexisting(self): |
| 24 | self.assertRaises(OSError, startfile, "nonexisting.vbs") |
| 25 | |
| 26 | def test_empty(self): |
| 27 | # We need to make sure the child process starts in a directory |
nothing calls this directly
no test coverage detected