(call_options_args)
| 2811 | @pytest.mark.parametrize( |
| 2812 | "call_options_args", ["default", "all"], indirect=True) |
| 2813 | def test_call_options_repr(call_options_args): |
| 2814 | # https://github.com/apache/arrow/issues/47358 |
| 2815 | call_options = FlightCallOptions(**call_options_args) |
| 2816 | repr = call_options.__repr__() |
| 2817 | |
| 2818 | for arg, val in call_options_args.items(): |
| 2819 | if val is None: |
| 2820 | assert arg in repr |
| 2821 | continue |
| 2822 | |
| 2823 | assert f"{arg}={val}" in repr |
nothing calls this directly
no test coverage detected