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.
make specs
1 parent 925905c commit 7f3713bCopy full SHA for 7f3713b
nipype/interfaces/tests/test_auto_RCommand.py
@@ -0,0 +1,31 @@
1
+# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2
+from ..r import RCommand
3
+
4
5
+def test_RCommand_inputs():
6
+ input_map = dict(
7
+ args=dict(
8
+ argstr="%s",
9
+ ),
10
+ environ=dict(
11
+ nohash=True,
12
+ usedefault=True,
13
14
+ rfile=dict(
15
16
17
+ script=dict(
18
+ argstr='-e "%s"',
19
+ mandatory=True,
20
+ position=-1,
21
22
+ script_file=dict(
23
+ extensions=None,
24
25
26
+ )
27
+ inputs = RCommand.input_spec()
28
29
+ for key, metadata in list(input_map.items()):
30
+ for metakey, value in list(metadata.items()):
31
+ assert getattr(inputs.traits()[key], metakey) == value
0 commit comments