| D | expectations_parser.py | 17 def __init__(self, reason, test, conditions, results): argument 23 conditions: List of tags indicating which conditions to disable for. 24 Conditions are combined using logical and. Example: ['Mac', 'Debug'] 31 assert isinstance(conditions, list) 32 self._conditions = conditions 39 self.conditions == other.conditions and 51 def conditions(self): member in Expectation 113 conditions = [c for c in raw_conditions.split()] if raw_conditions else [] 115 for c in conditions: 120 return Expectation(reason, test, conditions, [r for r in results.split()])
|