File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
nipype/interfaces/afni/tests Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,12 @@ def test_Warp_inputs():
29
29
oblique_parent = dict (argstr = '-oblique_parent %s' , ),
30
30
out_file = dict (
31
31
argstr = '-prefix %s' ,
32
+ keep_extension = True ,
32
33
name_source = 'in_file' ,
33
34
name_template = '%s_warp' ,
34
35
),
35
36
outputtype = dict (),
37
+ save_warp = dict (usedefault = True , ),
36
38
tta2mni = dict (argstr = '-tta2mni' , ),
37
39
verbose = dict (argstr = '-verb' , ),
38
40
zpad = dict (argstr = '-zpad %d' , ),
@@ -43,7 +45,10 @@ def test_Warp_inputs():
43
45
for metakey , value in list (metadata .items ()):
44
46
assert getattr (inputs .traits ()[key ], metakey ) == value
45
47
def test_Warp_outputs ():
46
- output_map = dict (out_file = dict (), )
48
+ output_map = dict (
49
+ out_file = dict (),
50
+ warp_file = dict (),
51
+ )
47
52
outputs = Warp .output_spec ()
48
53
49
54
for key , metadata in list (output_map .items ()):
You can’t perform that action at this time.
0 commit comments