()
| 1118 | |
| 1119 | |
| 1120 | def test_flight_server_location_argument(): |
| 1121 | locations = [ |
| 1122 | None, |
| 1123 | 'grpc://localhost:0', |
| 1124 | ('localhost', find_free_port()), |
| 1125 | ] |
| 1126 | for location in locations: |
| 1127 | with FlightServerBase(location) as server: |
| 1128 | assert isinstance(server, FlightServerBase) |
| 1129 | |
| 1130 | |
| 1131 | def test_server_exit_reraises_exception(): |
nothing calls this directly
no test coverage detected