##// END OF EJS Templates
fix test for pyc file modules
Matthias Bussonnier -
Show More
@@ -105,7 +105,8 b' def test_find_mod_4():'
105 nt.assert_equal(mp.find_mod("pack"), modpath)
105 nt.assert_equal(mp.find_mod("pack"), modpath)
106
106
107 def test_find_mod_5():
107 def test_find_mod_5():
108 nt.assert_is_none(mp.find_mod("packpyc"))
108 modpath = join(TMP_TEST_DIR, "packpyc.pyc")
109 nt.assert_equal(mp.find_mod("packpyc"), modpath)
109
110
110 def test_find_module_1():
111 def test_find_module_1():
111 modpath = join(TMP_TEST_DIR, "xmod")
112 modpath = join(TMP_TEST_DIR, "xmod")
General Comments 0
You need to be logged in to leave comments. Login now