Searched refs:test_item (Results 1 – 4 of 4) sorted by relevance
91 def decorator(test_item): argument92 if not isinstance(test_item, type):93 @functools.wraps(test_item)96 test_item = skip_wrapper98 test_item.__unittest_skip__ = True99 test_item.__unittest_skip_why__ = reason100 return test_item119 def expectedFailure(test_item): argument120 test_item.__unittest_expecting_failure__ = True121 return test_item
58 def decorator(test_item): argument59 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
17 class test_item(object): class
40 self._gtest = site_server_job_utils.test_item(*gtest_entry)