Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/simulator
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2006-09-09 23:38:04 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2006-09-09 23:38:04 (GMT)
commitf4f70d22f1d29d24b7234e9a6fb3203deec5adfa (patch)
tree99735579495e8644bd102e7632eeeef06dfecee2 /tests/simulator
parent62674bbd91931a466a96b7e5121792f4cbe8c79a (diff)
Remove old bots implementation. I'm going to rewrite this.
Diffstat (limited to 'tests/simulator')
-rw-r--r--tests/simulator/LICENSE7
-rw-r--r--tests/simulator/bots.py18
-rw-r--r--tests/simulator/chaitanya.jpgbin0 -> 1653 bytes
-rw-r--r--tests/simulator/kiu.jpgbin0 -> 1364 bytes
-rw-r--r--tests/simulator/penelope.jpgbin0 -> 1577 bytes
5 files changed, 25 insertions, 0 deletions
diff --git a/tests/simulator/LICENSE b/tests/simulator/LICENSE
new file mode 100644
index 0000000..e80f60b
--- /dev/null
+++ b/tests/simulator/LICENSE
@@ -0,0 +1,7 @@
+This work is licensed under the Creative Commons Attribution 2.5 License. To view a copy of this license, visit http://creativecommons.org/licenses/by/2.5/ or send a letter to Creative Commons, 543 Howard Street, 5th Floor, San Francisco, California, 94105, USA.
+
+Attributions:
+
+chaitanya.jpg http://www.flickr.com/photos/meanestindian/166408558/
+penelope.jpg http://www.flickr.com/photos/gagah/9257515/
+kiu.jpg http://flickr.com/photos/31072589@N00/139234295/
diff --git a/tests/simulator/bots.py b/tests/simulator/bots.py
new file mode 100644
index 0000000..68bc4e1
--- /dev/null
+++ b/tests/simulator/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()
diff --git a/tests/simulator/chaitanya.jpg b/tests/simulator/chaitanya.jpg
new file mode 100644
index 0000000..aecaf81
--- /dev/null
+++ b/tests/simulator/chaitanya.jpg
Binary files differ
diff --git a/tests/simulator/kiu.jpg b/tests/simulator/kiu.jpg
new file mode 100644
index 0000000..1beca11
--- /dev/null
+++ b/tests/simulator/kiu.jpg
Binary files differ
diff --git a/tests/simulator/penelope.jpg b/tests/simulator/penelope.jpg
new file mode 100644
index 0000000..0d81097
--- /dev/null
+++ b/tests/simulator/penelope.jpg
Binary files differ