コード例 #1
0
ファイル: test_listbox.py プロジェクト: wgarrity-1/guizero
def test_repeat_schedule():
    a = App()
    l = ListBox(a, ["foo", "bar"])
    schedule_repeat_test(a, l)
    a.destroy()
コード例 #2
0
def test_repeat_schedule():
    a = App()
    c = CheckBox(a, "foo")
    schedule_repeat_test(a, c)
    a.destroy()
コード例 #3
0
def test_repeat_schedule():
    a = App()
    w = Window(a)
    schedule_repeat_test(a, w)
    a.destroy()
コード例 #4
0
ファイル: test_text.py プロジェクト: Parshkov/guizero
def test_repeat_schedule():
    a = App()
    t = Text(a)
    schedule_repeat_test(a, t)
    a.destroy()
コード例 #5
0
ファイル: test_combo.py プロジェクト: yonghuming/guizero
def test_repeat_schedule():
    a = App()
    c = Combo(a, ["foo", "bar"])
    schedule_repeat_test(a, c)
    a.destroy()
コード例 #6
0
def test_repeat_schedule():
    a = App()
    b = PushButton(a)
    schedule_repeat_test(a, b)
    a.destroy()
コード例 #7
0
def test_repeat_schedule():
    a = App()
    b = Box(a)
    schedule_repeat_test(a, b)
    a.destroy()
コード例 #8
0
def test_repeat_schedule():
    a = App()
    schedule_repeat_test(a, a)
    a.destroy()
コード例 #9
0
def test_repeat_schedule():
    a = App()
    d = Drawing(a)
    schedule_repeat_test(a, d)
    a.destroy()
コード例 #10
0
def test_repeat_schedule():
    a = App()
    b = ButtonGroup(a, ["foo", "bar"])
    schedule_repeat_test(a, b)
    a.destroy()
コード例 #11
0
ファイル: test_titlebox.py プロジェクト: maroph/guizero
def test_repeat_schedule():
    a = App()
    b = TitleBox(a, "title")
    schedule_repeat_test(a, b)
    a.destroy()
コード例 #12
0
def test_repeat_schedule():
    a = App()
    p = Picture(a)
    schedule_repeat_test(a, p)
    a.destroy()