Various tests for filefind
()
| 243 | nt.assert_equal(path.get_xdg_dir(), None) |
| 244 | |
| 245 | def test_filefind(): |
| 246 | """Various tests for filefind""" |
| 247 | f = tempfile.NamedTemporaryFile() |
| 248 | # print 'fname:',f.name |
| 249 | alt_dirs = paths.get_ipython_dir() |
| 250 | t = path.filefind(f.name, alt_dirs) |
| 251 | # print 'found:',t |
| 252 | |
| 253 | |
| 254 | @dec.skip_if_not_win32 |
nothing calls this directly
no outgoing calls
no test coverage detected