(calendar, date_args, offset, expected)
| 934 | ids=_id_func, |
| 935 | ) |
| 936 | def test_onOffset(calendar, date_args, offset, expected): |
| 937 | date_type = get_date_type(calendar) |
| 938 | date = date_type(*date_args) |
| 939 | result = offset.onOffset(date) |
| 940 | assert result == expected |
| 941 | |
| 942 | |
| 943 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…