(self)
| 541 | assert result == ["hello \\x00", "hello \\x05"] |
| 542 | |
| 543 | def test_idmaker_enum(self) -> None: |
| 544 | enum = pytest.importorskip("enum") |
| 545 | e = enum.Enum("Foo", "one, two") |
| 546 | result = IdMaker( |
| 547 | ("a", "b"), [pytest.param(e.one, e.two)], None, None, None, None |
| 548 | ).make_unique_parameterset_ids() |
| 549 | assert result == ["Foo.one-Foo.two"] |
| 550 | |
| 551 | def test_idmaker_idfn(self) -> None: |
| 552 | """#351""" |
nothing calls this directly
no test coverage detected