(self, path1)
| 1053 | assert mod.__name__ == "otherdir.a" |
| 1054 | |
| 1055 | def test_pyimport_b(self, path1): |
| 1056 | otherdir = path1.join("otherdir") |
| 1057 | mod = otherdir.join("b.py").pyimport() |
| 1058 | assert mod.stuff == "got it" |
| 1059 | assert mod.__name__ == "otherdir.b" |
| 1060 | |
| 1061 | def test_pyimport_c(self, path1): |
| 1062 | otherdir = path1.join("otherdir") |