Make sure GetSchema returns correct schema.
()
| 1265 | |
| 1266 | |
| 1267 | def test_flight_get_schema(): |
| 1268 | """Make sure GetSchema returns correct schema.""" |
| 1269 | with GetInfoFlightServer() as server, \ |
| 1270 | FlightClient(('localhost', server.port)) as client: |
| 1271 | info = client.get_schema(flight.FlightDescriptor.for_command(b'')) |
| 1272 | assert info.schema == pa.schema([('a', pa.int32())]) |
| 1273 | |
| 1274 | |
| 1275 | def test_list_actions(): |
nothing calls this directly
no test coverage detected