We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fca6fc commit f1c01f7Copy full SHA for f1c01f7
netneurotools/tests/test_datasets.py
@@ -148,6 +148,13 @@ def test_fetch_hcp_standards(tmpdir):
148
assert os.path.isdir(hcp)
149
150
151
+def test_fetch_mmpall(tmpdir):
152
+ mmp = datasets.fetch_mmpall(data_dir=tmpdir, verbose=0)
153
+ assert len(mmp) == 2
154
+ assert all(os.path.isfile(hemi) for hemi in mmp)
155
+ assert all(hasattr(mmp, attr) for attr in ('lh', 'rh'))
156
+
157
158
def test_fetch_voneconomo(tmpdir):
159
vek = datasets.fetch_voneconomo(data_dir=tmpdir, verbose=0)
160
assert all(hasattr(vek, k) and len(vek[k]) == 2 for k in ['gcs', 'ctab'])
0 commit comments