Skip to content

Commit 3d5661c

Browse files
committed
TEST: make specs
1 parent c3ee8d4 commit 3d5661c

File tree

5 files changed

+85
-0
lines changed

5 files changed

+85
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from __future__ import unicode_literals
3+
from ..core import LibraryBaseInterface
4+
5+
6+
def test_LibraryBaseInterface_inputs():
7+
input_map = dict(
8+
ignore_exception=dict(
9+
deprecated='1.0.0',
10+
nohash=True,
11+
usedefault=True,
12+
), )
13+
inputs = LibraryBaseInterface.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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from __future__ import unicode_literals
3+
from ..base import CFFBaseInterface
4+
5+
6+
def test_CFFBaseInterface_inputs():
7+
input_map = dict(
8+
ignore_exception=dict(
9+
deprecated='1.0.0',
10+
nohash=True,
11+
usedefault=True,
12+
), )
13+
inputs = CFFBaseInterface.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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from __future__ import unicode_literals
3+
from ..base import NipyBaseInterface
4+
5+
6+
def test_NipyBaseInterface_inputs():
7+
input_map = dict(
8+
ignore_exception=dict(
9+
deprecated='1.0.0',
10+
nohash=True,
11+
usedefault=True,
12+
), )
13+
inputs = NipyBaseInterface.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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from __future__ import unicode_literals
3+
from ..base import NitimeBaseInterface
4+
5+
6+
def test_NitimeBaseInterface_inputs():
7+
input_map = dict(
8+
ignore_exception=dict(
9+
deprecated='1.0.0',
10+
nohash=True,
11+
usedefault=True,
12+
), )
13+
inputs = NitimeBaseInterface.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
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from __future__ import unicode_literals
3+
from ..nilearn import NilearnBaseInterface
4+
5+
6+
def test_NilearnBaseInterface_inputs():
7+
input_map = dict(
8+
ignore_exception=dict(
9+
deprecated='1.0.0',
10+
nohash=True,
11+
usedefault=True,
12+
), )
13+
inputs = NilearnBaseInterface.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

Comments
 (0)