Lines Matching refs:test_item
58 def decorator(test_item):59 if not isinstance(test_item, (type, types.ClassType)):60 @functools.wraps(test_item)63 test_item = skip_wrapper65 test_item.__unittest_skip__ = True66 test_item.__unittest_skip_why__ = reason67 return test_item