()
| 46 | |
| 47 | |
| 48 | def test_content_length_setter(): |
| 49 | resp = StreamResponse() |
| 50 | |
| 51 | resp.content_length = 234 |
| 52 | assert 234 == resp.content_length |
| 53 | |
| 54 | |
| 55 | def test_drop_content_length_header_on_setting_len_to_None(): |
nothing calls this directly
no test coverage detected