"""
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
[docs]
class EventTypeTestBase(PluginTestBase[EventType]):
"""
A base class for testing :py:class:`betty.ancestry.event_type.EventType` implementations.
"""
pass
[docs]
class DummyEventType(DummyPlugin, EventType):
"""
A dummy event type implementation.
"""
pass