Skip to content

Commit 2215ee5

Browse files
author
Oscar Esteban
committed
add missing specs
1 parent c119372 commit 2215ee5

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# AUTO-GENERATED by tools/checkspecs.py - DO NOT EDIT
2+
from ....testing import assert_equal
3+
from ..base import AFNICommandBase
4+
5+
6+
def test_AFNICommandBase_inputs():
7+
input_map = dict(args=dict(argstr='%s',
8+
),
9+
environ=dict(nohash=True,
10+
usedefault=True,
11+
),
12+
ignore_exception=dict(nohash=True,
13+
usedefault=True,
14+
),
15+
terminal_output=dict(nohash=True,
16+
),
17+
)
18+
inputs = AFNICommandBase.input_spec()
19+
20+
for key, metadata in list(input_map.items()):
21+
for metakey, value in list(metadata.items()):
22+
yield assert_equal, getattr(inputs.traits()[key], metakey), value
23+

0 commit comments

Comments
 (0)