mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-10 00:34:29 +00:00
18 lines
286 B
Python
18 lines
286 B
Python
|
"""
|
||
|
Placeholder test module to test reading from pynwb-generated NWB file
|
||
|
"""
|
||
|
|
||
|
|
||
|
def test_read_from_nwbfile(nwb_file):
|
||
|
"""
|
||
|
Read data from a pynwb HDF5 NWB file
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
def test_read_from_yaml(nwb_file):
|
||
|
"""
|
||
|
Read data from a yaml-fied NWB file
|
||
|
"""
|
||
|
pass
|