14 lines
369 B
Python
Raw Normal View History

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():
2021-02-09 15:58:26 -08:00
assert not inspect.isabstract(cls)
2021-02-11 16:00:29 -08:00
def test_sinks_not_abstract():
for cls in sink_class_mapping.values():
2021-02-09 15:58:26 -08:00
assert not inspect.isabstract(cls)