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 a9c039e commit 6b08b02Copy full SHA for 6b08b02
nipype/algorithms/tests/test_mesh_ops.py
@@ -75,3 +75,31 @@ def test_trans_distances():
75
76
os.chdir(curdir)
77
rmtree(tempdir)
78
+
79
80
+def test_warppoints():
81
+ tempdir = mkdtemp()
82
+ curdir = os.getcwd()
83
+ os.chdir(tempdir)
84
85
+ if m.no_tvtk():
86
+ yield assert_raises, ImportError, m.WarpPoints
87
88
+ # TODO: include regression tests for when tvtk is installed
89
90
+ os.chdir(curdir)
91
+ rmtree(tempdir)
92
93
94
+def test_meshwarpmaths():
95
96
97
98
99
100
+ yield assert_raises, ImportError, m.MeshWarpMaths
101
102
103
104
105
0 commit comments