(self, path1)
| 1047 | assert obj.__name__ == "0x.y.z" |
| 1048 | |
| 1049 | def test_pyimport_a(self, path1): |
| 1050 | otherdir = path1.join("otherdir") |
| 1051 | mod = otherdir.join("a.py").pyimport() |
| 1052 | assert mod.result == "got it" |
| 1053 | assert mod.__name__ == "otherdir.a" |
| 1054 | |
| 1055 | def test_pyimport_b(self, path1): |
| 1056 | otherdir = path1.join("otherdir") |