MCPcopy Create free account
hub / github.com/numpy/numpy / test_gpaths

Method test_gpaths

numpy/distutils/tests/test_misc_util.py:52–57  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

50class 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
59class TestSharedExtension:
60

Callers

nothing calls this directly

Calls 4

minrelpathFunction · 0.90
gpathsFunction · 0.90
assert_Function · 0.90
joinFunction · 0.85

Tested by

no test coverage detected