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.
2 parents f0b0af9 + 33220bb commit c431646Copy full SHA for c431646
tests/test_io.py
@@ -41,6 +41,10 @@ def test_basic(self):
41
assert np.isclose(mesh_a.vertices, mesh_b.vertices, precision_A).all()
42
assert np.isclose(mesh_a.faces, mesh_b.faces, precision_A).all()
43
44
+ def test_load_texture(self):
45
+ test_text = sio.load_texture('examples/data/example_texture_parcel.gii').darray[0]
46
+ self.assertTrue(test_text.size > 0)
47
+
48
49
if __name__ == "__main__":
50
unittest.main()
0 commit comments