Make sure we can find the full path to ls.
()
| 45 | |
| 46 | @dec.skip_win32 |
| 47 | def test_find_cmd_ls(): |
| 48 | """Make sure we can find the full path to ls.""" |
| 49 | path = find_cmd("ls") |
| 50 | assert path.endswith("ls") |
| 51 | |
| 52 | |
| 53 | @dec.skip_if_not_win32 |
nothing calls this directly
no test coverage detected
searching dependent graphs…