(self)
| 31 | self.assertEqual("foo", result.result) |
| 32 | |
| 33 | def test_async_call(self): |
| 34 | result = self.client.algo('quality/echo').set_options(output=OutputType.void).pipe("foo") |
| 35 | self.assertTrue(hasattr(result, "async_protocol")) |
| 36 | self.assertTrue(hasattr(result, "request_id")) |
| 37 | |
| 38 | def test_raw_call(self): |
| 39 | result = self.client.algo('quality/echo').set_options(output=OutputType.raw).pipe("foo") |
nothing calls this directly
no test coverage detected