(self, resp_content=b"message")
| 16 | return "" |
| 17 | |
| 18 | def flow(self, resp_content=b"message"): |
| 19 | times = dict( |
| 20 | timestamp_start=746203272, |
| 21 | timestamp_end=746203272, |
| 22 | ) |
| 23 | |
| 24 | # Create a dummy flow for testing |
| 25 | return tflow.tflow( |
| 26 | req=tutils.treq(method=b"GET", **times), |
| 27 | resp=tutils.tresp(content=resp_content, **times), |
| 28 | ) |
| 29 | |
| 30 | def test_simple(self, tmpdir): |
| 31 | with taddons.context() as tctx: |
no outgoing calls
no test coverage detected