nwb-linkml/nwb_linkml/tests/test_adapters/test_adapter_classes.py

11 lines
291 B
Python
Raw Normal View History

2023-10-10 01:59:53 +00:00
import pytest
from ..fixtures import linkml_schema_bare, linkml_schema, nwb_schema
from nwb_linkml.adapters import DatasetAdapter, ClassAdapter
def test_build_base(nwb_schema):
# simplest case, nothing special here
dset = DatasetAdapter(cls=nwb_schema.datasets['image'])
2023-10-10 01:59:53 +00:00
pass