mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 21:36:08 +00:00
15 lines
370 B
Python
15 lines
370 B
Python
import inspect
|
|
|
|
from gometa.ingestion.sink import sink_class_mapping
|
|
from gometa.ingestion.source import source_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)
|