Snapshot testing progress

This commit is contained in:
Darren Burns
2022-09-16 16:28:48 +01:00
parent e8acba5238
commit d619dae510
10 changed files with 1294 additions and 56 deletions

View File

@@ -0,0 +1,14 @@
def test_grid_layout_basic(snap_compare):
assert snap_compare("docs/examples/guide/layout/grid_layout1.py")
def test_grid_layout_basic_overflow(snap_compare):
assert snap_compare("docs/examples/guide/layout/grid_layout2.py")
def test_combining_layouts(snap_compare):
assert snap_compare("docs/examples/guide/layout/combining_layouts.py")
def test_layers(snap_compare):
assert snap_compare("docs/examples/guide/layout/layers.py")