(self, path1)
| 1274 | assert t1 == str(path1) + "\\dir\\a_path" |
| 1275 | |
| 1276 | def test_sysfind_in_currentdir(self, path1): |
| 1277 | cmd = local.sysfind("cmd") |
| 1278 | root = cmd.new(dirname="", basename="") # c:\ in most installations |
| 1279 | with root.as_cwd(): |
| 1280 | x = local.sysfind(cmd.relto(root)) |
| 1281 | assert x.check(file=1) |
| 1282 | |
| 1283 | def test_fnmatch_file_abspath_posix_pattern_on_win32(self, tmpdir): |
| 1284 | # path-matching patterns might contain a posix path separator '/' |