Exemple #1
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: Waffle(a), False)
    a.destroy()
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: CheckBox(a, "foo"), True)
    a.destroy()
Exemple #3
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: ButtonGroup(a, ["foo", "bar"]), True)
    a.destroy()
Exemple #4
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: TextBox(a), True)
    a.destroy()
Exemple #5
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: PushButton(a), True)
    a.destroy()
Exemple #6
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(a, lambda: ListBox(a, ["foo", "bar"]), True)
    a.destroy()
Exemple #7
0
def test_inherited_properties():
    a = App()
    inherited_properties_test(
        a, lambda: Text(a, color=None, size=None, font=None), True)
    a.destroy()