(comparison_op, other)
| 89 | ], |
| 90 | ) |
| 91 | def test_comparison_ops(comparison_op, other): |
| 92 | assert comparison_op(NA, other) is NA |
| 93 | assert comparison_op(other, NA) is NA |
| 94 | |
| 95 | |
| 96 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected