Files
textual/tests/snapshot_tests/test_snapshots.py
2022-09-16 16:28:48 +01:00

15 lines
451 B
Python

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")