(self, document)
| 48 | self.spec = spec |
| 49 | |
| 50 | def validate(self, document): |
| 51 | input = document.text |
| 52 | |
| 53 | for validator in self.validators: |
| 54 | validator(input, self.spec) |
| 55 | |
| 56 | |
| 57 | class StringReader(object): |
nothing calls this directly
no outgoing calls
no test coverage detected