Make sure that FindCmdError is raised if we can't find the cmd.
()
| 63 | @dec.onlyif(lambda : sys.platform != 'win32' or has_pywin32(), |
| 64 | "This test runs on posix or in win32 with win32api installed") |
| 65 | def test_find_cmd_fail(): |
| 66 | """Make sure that FindCmdError is raised if we can't find the cmd.""" |
| 67 | nt.assert_raises(FindCmdError,find_cmd,'asdfasdf') |
| 68 | |
| 69 | |
| 70 | @dec.skip_win32 |
nothing calls this directly
no outgoing calls
no test coverage detected