A section of the configuration file. Sections are enabled or disabled prior to running the tests, based on their conditions
| 1301 | |
| 1302 | |
| 1303 | class Section(object): |
| 1304 | """A section of the configuration file. Sections are enabled or |
| 1305 | disabled prior to running the tests, based on their conditions""" |
| 1306 | |
| 1307 | def __init__(self, condition): |
| 1308 | self.condition = condition |
| 1309 | self.rules = [ ] |
| 1310 | |
| 1311 | def AddRule(self, rule): |
| 1312 | self.rules.append(rule) |
| 1313 | |
| 1314 | |
| 1315 | class Rule(object): |
no outgoing calls
searching dependent graphs…