Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Experior.Activity/script_calculate.py
diff options
context:
space:
mode:
Diffstat (limited to 'Experior.Activity/script_calculate.py')
-rwxr-xr-xExperior.Activity/script_calculate.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/Experior.Activity/script_calculate.py b/Experior.Activity/script_calculate.py
new file mode 100755
index 0000000..93f0fa4
--- /dev/null
+++ b/Experior.Activity/script_calculate.py
@@ -0,0 +1,35 @@
+import time
+import logging
+
+sugarActivityName = 'Calculate'
+
+def sugarbot_main(widgets):
+ # Test 'selected' functionality.
+ assert widgets['Share with:'].selected == "Private"
+ widgets['Share with:'].selected = "My Neighborhood"
+ assert widgets['Share with:'].selected == "My Neighborhood"
+
+ # Test widget fetching/assignment
+ one = widgets['1']
+ plus = widgets['+']
+ enter = widgets['enter']
+
+ for i in range(0,5):
+ # Test click
+ one.click()
+ plus.click()
+ one.click()
+
+ # Test Entry text assignment
+ assert widgets['TextEntry'].text == '1+1'
+
+ enter.click()
+
+ assert len(widgets['TextEntry'].text) == 0
+
+ time.sleep(1)
+
+ # More Entry text assignment
+ widgets['TextEntry'].text = "1+5"
+ assert widgets['TextEntry'].text == '1+5'
+ enter.click()