(self)
| 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") |
| 40 | self.assertEqual("foo", result) |
| 41 | |
| 42 | def test_dict_call(self): |
| 43 | result = self.client.algo('quality/echo').pipe({"foo": "bar"}) |
nothing calls this directly
no test coverage detected