Home
last modified time | relevance | path

Searched refs:test_item (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/
Dcase.py57 def decorator(test_item): argument
58 if not (isinstance(test_item, type) and issubclass(test_item, TestCase)):
59 @functools.wraps(test_item)
62 test_item = skip_wrapper
64 test_item.__unittest_skip__ = True
65 test_item.__unittest_skip_why__ = reason
66 return test_item