(self, sections, defs)
| 859 | return True |
| 860 | |
| 861 | def GetTestStatus(self, sections, defs): |
| 862 | status_file = join(self.root, '%s.status' % self.section) |
| 863 | if exists(status_file): |
| 864 | ReadConfigurationInto(status_file, sections, defs) |
| 865 | |
| 866 | |
| 867 | class TestSuite(object): |
no test coverage detected