()
| 92 | |
| 93 | |
| 94 | def test_reset_charset(): |
| 95 | resp = StreamResponse() |
| 96 | |
| 97 | resp.content_type = 'text/html' |
| 98 | resp.charset = None |
| 99 | assert resp.charset is None |
| 100 | |
| 101 | |
| 102 | def test_reset_charset_after_setting(): |
nothing calls this directly
no test coverage detected