(self)
| 1053 | ) |
| 1054 | |
| 1055 | def test_streaming_response_idempotent(self): |
| 1056 | response = StreamingHttpResponse(["hello world"]) |
| 1057 | self.assertContains(response, "hello") |
| 1058 | self.assertContains(response, "world") |
| 1059 | |
| 1060 | def test_streaming_response_not_contains_idempotent(self): |
| 1061 | response = StreamingHttpResponse(["hello world"]) |
nothing calls this directly
no test coverage detected