Lines Matching refs:test_item
115 def decorator(test_item): argument
116 if not isinstance(test_item, type):
117 @functools.wraps(test_item)
120 test_item = skip_wrapper
122 test_item.__unittest_skip__ = True
123 test_item.__unittest_skip_why__ = reason
124 return test_item
126 test_item = reason
128 return decorator(test_item)
147 def expectedFailure(test_item): argument
148 test_item.__unittest_expecting_failure__ = True
149 return test_item