Home | History | Annotate | Download | only in unittest

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_wrapper
65 test_item.__unittest_skip__ = True
66 test_item.__unittest_skip_why__ = reason
67 return test_item