(self)
| 209 | self.assertEqual(bytearray('foo', 'utf-8'), result.result) |
| 210 | |
| 211 | def test_async_call(self): |
| 212 | result = self.client.algo('quality/echo').set_options(output=OutputType.void).pipe("foo") |
| 213 | self.assertTrue(hasattr(result, "async_protocol")) |
| 214 | self.assertTrue(hasattr(result, "request_id")) |
| 215 | |
| 216 | def test_raw_call(self): |
| 217 | result = self.client.algo('quality/echo').set_options(output=OutputType.raw).pipe("foo") |
nothing calls this directly
no test coverage detected