Source code for betty.test_utils.ancestry.event_type
"""
Test utilities for :py:mod:`betty.ancestry.event_type`.
"""
from __future__ import annotations
from betty.ancestry.event_type import EventType
from betty.test_utils.plugin import (
DummyPlugin,
PluginTestBase,
assert_plugin_identifier,
)
[docs]
class EventTypeTestBase(PluginTestBase[EventType]):
"""
A base class for testing :py:class:`betty.ancestry.event_type.EventType` implementations.
"""