Break up the SelectionList snapshit tests

Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
This commit is contained in:
Dave Pearson
2023-05-25 13:20:22 +01:00
committed by GitHub
parent 51133b3a62
commit 51f8d0dc9a

View File

@@ -232,9 +232,13 @@ def test_progress_bar_completed_styled(snap_compare):
def test_select(snap_compare): def test_select(snap_compare):
assert snap_compare(WIDGET_EXAMPLES_DIR / "select_widget.py") assert snap_compare(WIDGET_EXAMPLES_DIR / "select_widget.py")
def test_selection_list(snap_compare): def test_selection_list_selected(snap_compare):
assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selected.py") assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selected.py")
def test_selection_list_selections(snap_compare):
assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selections.py") assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_selections.py")
def test_selection_list_tuples(snap_compare):
assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_tuples.py") assert snap_compare(WIDGET_EXAMPLES_DIR / "selection_list_tuples.py")
def test_select_expanded(snap_compare): def test_select_expanded(snap_compare):