(self)
| 140 | b"HTTP/1.0 414 URI Too Long") |
| 141 | |
| 142 | def test_validated_hello(self): |
| 143 | out, err = run_amock(validator(hello_app)) |
| 144 | # the middleware doesn't support len(), so content-length isn't there |
| 145 | self.check_hello(out, has_length=False) |
| 146 | |
| 147 | def test_simple_validation_error(self): |
| 148 | def bad_app(environ,start_response): |
nothing calls this directly
no test coverage detected