aboutsummaryrefslogtreecommitdiff
path: root/tests/client/script_servicetest.py
blob: 385256c95d1a163b9cbf2e3ef039816d7db5aa17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/python2.7

import time
from menuscript import Script, ActionList, MENU_OBJECT_PATH

al = ActionList(MENU_OBJECT_PATH)
al.appendItem("Menu0", "Menu0")
al.appendItem("Menu1", "Menu1")

t = Script.create(al)
t.run()