| 617 | class TestEnum: |
| 618 | def test_empty_errors(self, proto): |
| 619 | class Empty(enum.Enum): |
| 620 | pass |
| 621 | |
| 622 | with pytest.raises(TypeError, match="Enum types must have at least one item"): |
| 623 | proto.Decoder(Empty) |
no outgoing calls
searching dependent graphs…