(self)
| 623 | assert result == ["a", "3-4"] |
| 624 | |
| 625 | def test_idmaker_with_paramset_id(self) -> None: |
| 626 | result = idmaker( |
| 627 | ("a", "b"), |
| 628 | [pytest.param(1, 2, id="me"), pytest.param(3, 4, id="you")], |
| 629 | ids=["a", None], |
| 630 | ) |
| 631 | assert result == ["me", "you"] |
| 632 | |
| 633 | def test_idmaker_with_ids_unique_names(self) -> None: |
| 634 | result = idmaker( |