(self)
| 50 | class TestGpaths: |
| 51 | |
| 52 | def test_gpaths(self): |
| 53 | local_path = minrelpath(join(dirname(__file__), '..')) |
| 54 | ls = gpaths('command/*.py', local_path) |
| 55 | assert_(join(local_path, 'command', 'build_src.py') in ls, repr(ls)) |
| 56 | f = gpaths('system_info.py', local_path) |
| 57 | assert_(join(local_path, 'system_info.py') == f[0], repr(f)) |
| 58 | |
| 59 | class TestSharedExtension: |
| 60 |
nothing calls this directly
no test coverage detected