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 0c6c16d commit b270f62Copy full SHA for b270f62
nipype/interfaces/mixins/tests/__init__.py
@@ -0,0 +1 @@
1
+# -*- coding: utf-8 -*-
nipype/interfaces/mixins/tests/test_auto_ReportCapableInterface.py
@@ -0,0 +1,17 @@
+# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2
+from __future__ import unicode_literals
3
+from ..reporting import ReportCapableInterface
4
+
5
6
+def test_ReportCapableInterface_inputs():
7
+ input_map = dict(
8
+ ignore_exception=dict(
9
+ deprecated='1.0.0',
10
+ nohash=True,
11
+ usedefault=True,
12
+ ), )
13
+ inputs = ReportCapableInterface.input_spec()
14
15
+ for key, metadata in list(input_map.items()):
16
+ for metakey, value in list(metadata.items()):
17
+ assert getattr(inputs.traits()[key], metakey) == value
0 commit comments