(wsgi_errors)
| 364 | % (wsgi_input, attr)) |
| 365 | |
| 366 | def check_errors(wsgi_errors): |
| 367 | for attr in ['flush', 'write', 'writelines']: |
| 368 | assert_(hasattr(wsgi_errors, attr), |
| 369 | "wsgi.errors (%r) doesn't have the attribute %s" |
| 370 | % (wsgi_errors, attr)) |
| 371 | |
| 372 | def check_status(status): |
| 373 | status = check_string_type(status, "Status") |
no test coverage detected
searching dependent graphs…