Ejemplo n.º 1
0
def test_pane_layout_properties(pane, document, comm):
    try:
        p = pane()
    except ImportError:
        pytest.skip("Dependent library could not be imported.")
    model = p.get_root(document, comm)
    check_layoutable_properties(p, model)
Ejemplo n.º 2
0
def test_layout_properties(layout, document, comm):
    l = layout()
    model = l.get_root(document, comm)
    check_layoutable_properties(l, model)
Ejemplo n.º 3
0
def test_widget_layout_properties(widget, document, comm):
    w = widget()
    model = w.get_root(document, comm)
    check_layoutable_properties(w, model)
Ejemplo n.º 4
0
def test_pane_layout_properties(pane, document, comm):
    p = pane()
    model = p.get_root(document, comm)
    check_layoutable_properties(p, model)