Lines Matching refs:test_item
91 def decorator(test_item):
92 if not isinstance(test_item, type):
93 @functools.wraps(test_item)
96 test_item = skip_wrapper
98 test_item.__unittest_skip__ = True
99 test_item.__unittest_skip_why__ = reason
100 return test_item
119 def expectedFailure(test_item):
120 test_item.__unittest_expecting_failure__ = True
121 return test_item