(self, path1)
| 1059 | assert mod.__name__ == "otherdir.b" |
| 1060 | |
| 1061 | def test_pyimport_c(self, path1): |
| 1062 | otherdir = path1.join("otherdir") |
| 1063 | mod = otherdir.join("c.py").pyimport() |
| 1064 | assert mod.value == "got it" |
| 1065 | |
| 1066 | def test_pyimport_d(self, path1): |
| 1067 | otherdir = path1.join("otherdir") |