We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9484c6 commit 33c6ff4Copy full SHA for 33c6ff4
tests/test_nwb.py
@@ -89,6 +89,23 @@ def test_NWBFile():
89
assert isinstance(nwb.io, pynwb.NWBHDF5IO)
90
nwb.close()
91
92
+ assert nwb.keys() == [
93
+ "position_time_support",
94
+ "epochs",
95
+ "z",
96
+ "y",
97
+ "x",
98
+ "rz",
99
+ "ry",
100
+ "rx",
101
+ ]
102
+
103
+ for a, b in zip(nwb.items(), nwb.data.items()):
104
+ assert a == b
105
106
+ for a, b in zip(nwb.values(), nwb.data.values()):
107
108
109
110
def test_NWBFile_missing_file():
111
with pytest.raises(FileNotFoundError) as e_info:
0 commit comments