Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/bots/bots.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bots/bots.py')
-rw-r--r--tests/bots/bots.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bots/bots.py b/tests/bots/bots.py
new file mode 100644
index 0000000..68bc4e1
--- /dev/null
+++ b/tests/bots/bots.py
@@ -0,0 +1,18 @@
+import os
+
+import gtk
+
+from sugar.bots import Bot
+
+basedir = os.path.dirname(__file__)
+
+bot = Bot("Chaitanya", os.path.join(basedir, "chaitanya.jpg"))
+bot.start()
+
+bot = Bot("Kiu", os.path.join(basedir, "kiu.jpg"))
+bot.start()
+
+bot = Bot("Penelope", os.path.join(basedir, "penelope.jpg"))
+bot.start()
+
+gtk.main()