(self, tmpdir)
| 1029 | tmpdir.join("b", "test_x123.py").pyimport() |
| 1030 | |
| 1031 | def test_pyimport_messy_name(self, tmpdir): |
| 1032 | # http://bitbucket.org/hpk42/py-trunk/issue/129 |
| 1033 | path = tmpdir.ensure("foo__init__.py") |
| 1034 | path.pyimport() |
| 1035 | |
| 1036 | def test_pyimport_dir(self, tmpdir): |
| 1037 | p = tmpdir.join("hello_123") |