D | test_expectations.py | 15 def __init__(self, expectation, pattern, conditions=None, bug=None): argument 19 self.bug = bug 60 def Fail(self, url_pattern, conditions=None, bug=None): argument 61 self._Expect('fail', url_pattern, conditions, bug) 63 def Skip(self, url_pattern, conditions=None, bug=None): argument 64 self._Expect('skip', url_pattern, conditions, bug) 66 def _Expect(self, expectation, url_pattern, conditions=None, bug=None): argument 68 bug))
|