def test_ProjThresh_inputs(): input_map = dict(args=dict(argstr='%s', ), environ=dict(nohash=True, usedefault=True, ), ignore_exception=dict(nohash=True, usedefault=True, ), in_files=dict(argstr='%s', mandatory=True, position=0, ), output_type=dict(), terminal_output=dict(mandatory=True, nohash=True, ), threshold=dict(argstr='%d', mandatory=True, position=1, ), ) inputs = ProjThresh.input_spec() for key, metadata in input_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(inputs.traits()[key], metakey), value
def test_ProjThresh_inputs(): input_map = dict( args=dict(argstr='%s', ), environ=dict( nohash=True, usedefault=True, ), ignore_exception=dict( nohash=True, usedefault=True, ), in_files=dict( argstr='%s', mandatory=True, position=0, ), output_type=dict(), terminal_output=dict(nohash=True, ), threshold=dict( argstr='%d', mandatory=True, position=1, ), ) inputs = ProjThresh.input_spec() for key, metadata in input_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(inputs.traits()[key], metakey), value
def test_ProjThresh_outputs(): output_map = dict(out_files=dict(), ) outputs = ProjThresh.output_spec() for key, metadata in output_map.items(): for metakey, value in metadata.items(): yield assert_equal, getattr(outputs.traits()[key], metakey), value