2024-10-16 19:18:32 -07:00

15 lines
414 B
Python

import inspect
from datahub.ingestion.sink.sink_registry import sink_registry
from datahub.ingestion.source.source_registry import source_registry
def test_sources_not_abstract() -> None:
for cls in source_registry.mapping.values():
assert not inspect.isabstract(cls)
def test_sinks_not_abstract() -> None:
for cls in sink_registry.mapping.values():
assert not inspect.isabstract(cls)