Make sure we can find the full path to ls.
()
| 40 | |
| 41 | @dec.skip_win32 |
| 42 | def test_find_cmd_ls(): |
| 43 | """Make sure we can find the full path to ls.""" |
| 44 | path = find_cmd('ls') |
| 45 | nt.assert_true(path.endswith('ls')) |
| 46 | |
| 47 | |
| 48 | def has_pywin32(): |
nothing calls this directly
no test coverage detected