Search for a filename without its .py extension Expected output: full path with .py extension
()
| 99 | nt.assert_equal(mp.find_mod("xmod.sub"), modpath) |
| 100 | |
| 101 | def test_find_mod_4(): |
| 102 | """ |
| 103 | Search for a filename without its .py extension |
| 104 | Expected output: full path with .py extension |
| 105 | """ |
| 106 | modpath = join(TMP_TEST_DIR, "pack.py") |
| 107 | nt.assert_equal(mp.find_mod("pack"), modpath) |
| 108 | |
| 109 | def test_find_mod_5(): |
| 110 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected