Skip to content

Commit cec3143

Browse files
committed
Auto generated the test for the updated interface.
1 parent ab9fd60 commit cec3143

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

nipype/interfaces/afni/tests/test_auto_Calc.py

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,34 @@ def test_Calc_inputs():
1111
name_template='%s_calc',
1212
argstr='-prefix %s',
1313
),
14-
expr=dict(position=2,
14+
in_file_a=dict(position=0,
15+
mandatory=True,
16+
argstr='-a %s',
17+
),
18+
expr=dict(position=3,
1519
mandatory=True,
1620
argstr='-expr "%s"',
1721
),
1822
args=dict(argstr='%s',
1923
),
2024
outputtype=dict(),
25+
start_idx=dict(requires=['stop_idx'],
26+
),
2127
in_file_b=dict(position=1,
2228
argstr=' -b %s',
2329
),
24-
other=dict(argstr='',
30+
in_file_c=dict(position=2,
31+
argstr=' -c %s',
2532
),
26-
in_file_a=dict(position=0,
27-
mandatory=True,
28-
argstr='-a %s',
33+
terminal_output=dict(mandatory=True,
34+
nohash=True,
2935
),
3036
environ=dict(nohash=True,
3137
usedefault=True,
3238
),
33-
single_idx=dict(),
34-
start_idx=dict(requires=['stop_idx'],
35-
),
36-
terminal_output=dict(mandatory=True,
37-
nohash=True,
39+
other=dict(argstr='',
3840
),
41+
single_idx=dict(),
3942
)
4043
inputs = Calc.input_spec()
4144

0 commit comments

Comments
 (0)