Search for a directory's file path. Expected output: a path to that directory's __init__.py file. TODO: Confirm why this is a duplicate test.
()
| 82 | nt.assert_equal(mp.find_mod("xmod"), modpath) |
| 83 | |
| 84 | def test_find_mod_2(): |
| 85 | """ |
| 86 | Search for a directory's file path. |
| 87 | Expected output: a path to that directory's __init__.py file. |
| 88 | TODO: Confirm why this is a duplicate test. |
| 89 | """ |
| 90 | modpath = join(TMP_TEST_DIR, "xmod", "__init__.py") |
| 91 | nt.assert_equal(mp.find_mod("xmod"), modpath) |
| 92 | |
| 93 | def test_find_mod_3(): |
| 94 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected