(self)
| 373 | """Tests for StreamingResponseHandler.""" |
| 374 | |
| 375 | def test_init(self): |
| 376 | display = _make_display() |
| 377 | handler = StreamingResponseHandler(display) |
| 378 | assert handler.display is display |
| 379 | assert handler._interrupted is False |
| 380 | |
| 381 | def test_init_with_runtime_config(self): |
| 382 | display = _make_display() |
nothing calls this directly
no test coverage detected