Skip to content

Commit 1104177

Browse files
committed
test
1 parent 681422f commit 1104177

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
2.79 KB
Binary file not shown.

tests/data/from_Solis.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,16 @@ def test_xpos_ypos_fluorescence():
2828
assert data.units == (None, None)
2929
data.close()
3030

31+
def test_kinetic():
32+
p = datasets.Solis.kinetic
33+
data = wt.data.from_Solis(p)
34+
assert data.shape == (10, 20, 20)
35+
assert data.axis_expressions == ("frame", "xindex", "yindex")
36+
assert data.units == (None, None, None)
37+
data.close()
38+
3139

3240
if __name__ == "__main__":
3341
test_wm_ypos_fluorescence_with_filter()
3442
test_xpos_ypos_fluorescence()
43+
test_kinetic()

0 commit comments

Comments
 (0)