mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 05:18:18 +00:00
14 lines
369 B
Python
14 lines
369 B
Python
import inspect
|
|
from gometa.ingestion.source import source_class_mapping
|
|
from gometa.ingestion.sink import sink_class_mapping
|
|
|
|
|
|
def test_sources_not_abstract():
|
|
for cls in source_class_mapping.values():
|
|
assert not inspect.isabstract(cls)
|
|
|
|
|
|
def test_sinks_not_abstract():
|
|
for cls in sink_class_mapping.values():
|
|
assert not inspect.isabstract(cls)
|