Spaces:
Sleeping
Sleeping
rmm
commited on
Commit
·
f2d67d1
1
Parent(s):
16fcc83
test: improved name of test file to be explicit
Browse files
src/apptest/{demo_wv.py → demo_whale_viewer.py}
RENAMED
File without changes
|
tests/test_demo_wv.py
CHANGED
@@ -17,7 +17,7 @@ def test_selectbox_ok():
|
|
17 |
- finally, we check there are the right number of options (26)
|
18 |
|
19 |
'''
|
20 |
-
at = AppTest.from_file("src/apptest/
|
21 |
assert len(at.selectbox) == 1
|
22 |
assert at.selectbox[0].value == "beluga"
|
23 |
assert at.selectbox[0].index == 0
|
@@ -62,7 +62,7 @@ def test_img_props():
|
|
62 |
- then changing the image, we do the same checks again
|
63 |
|
64 |
'''
|
65 |
-
at = AppTest.from_file("src/apptest/
|
66 |
ix = 0 # we didn't interact with the dropdown, so it should be the first one
|
67 |
# could fetch the property - maybe better in case code example changes
|
68 |
ix = at.selectbox[0].index
|
|
|
17 |
- finally, we check there are the right number of options (26)
|
18 |
|
19 |
'''
|
20 |
+
at = AppTest.from_file("src/apptest/demo_whale_viewer.py").run()
|
21 |
assert len(at.selectbox) == 1
|
22 |
assert at.selectbox[0].value == "beluga"
|
23 |
assert at.selectbox[0].index == 0
|
|
|
62 |
- then changing the image, we do the same checks again
|
63 |
|
64 |
'''
|
65 |
+
at = AppTest.from_file("src/apptest/demo_whale_viewer.py").run()
|
66 |
ix = 0 # we didn't interact with the dropdown, so it should be the first one
|
67 |
# could fetch the property - maybe better in case code example changes
|
68 |
ix = at.selectbox[0].index
|