mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-13 02:04:29 +00:00
11 lines
No EOL
291 B
Python
11 lines
No EOL
291 B
Python
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'])
|
|
|
|
pass |