(self)
| 389 | assert result == ["a0-\\xc3\\xb4"] |
| 390 | |
| 391 | def test_idmaker_with_bytes_regex(self) -> None: |
| 392 | result = idmaker(("a"), [pytest.param(re.compile(b"foo"), 1.0)]) |
| 393 | assert result == ["foo"] |
| 394 | |
| 395 | def test_idmaker_native_strings(self) -> None: |
| 396 | result = idmaker( |