()
| 73 | |
| 74 | def test_get_flight_info(async_client): |
| 75 | async def _test(): |
| 76 | descriptor = flight.FlightDescriptor.for_command(b"simple") |
| 77 | info = await async_client.get_flight_info(descriptor) |
| 78 | assert info == ExampleServer.simple_info |
| 79 | |
| 80 | asyncio.run(_test()) |
| 81 |
no test coverage detected