(self, response)
| 136 | self.template += ": " |
| 137 | |
| 138 | def _transform_response(self, response): |
| 139 | if response.lower() in POSITIVE_BOOLEAN: |
| 140 | return True |
| 141 | if response.lower() in NEGATIVE_BOOLEAN: |
| 142 | return False |
| 143 | |
| 144 | # Hopefully, it will never happen |
| 145 | raise OperationFailureException( |
| 146 | "Response neither positive no negative. " |
| 147 | "Value have not been properly validated." |
| 148 | ) |
| 149 | |
| 150 | |
| 151 | class NumberReader(StringReader): |
nothing calls this directly
no test coverage detected