summaryrefslogtreecommitdiffstats
path: root/Mac/Lib/test
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1995-07-17 11:43:20 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1995-07-17 11:43:20 (GMT)
commit5ccd826aabfe3b8770fe7050795bc8e368ff2a4e (patch)
tree5c16d02b33b442f46b390bfff30fe2881da61795 /Mac/Lib/test
parent40775bafabe8b32d3a0ff2276430ad75b139dde9 (diff)
downloadcpython-5ccd826aabfe3b8770fe7050795bc8e368ff2a4e.zip
cpython-5ccd826aabfe3b8770fe7050795bc8e368ff2a4e.tar.gz
cpython-5ccd826aabfe3b8770fe7050795bc8e368ff2a4e.tar.bz2
Gensuitemodule generates python classes from aete/aeut resources
test_suite is a tiny test program for such a generated class
Diffstat (limited to 'Mac/Lib/test')
-rw-r--r--Mac/Lib/test/test_suite.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/Mac/Lib/test/test_suite.py b/Mac/Lib/test/test_suite.py
new file mode 100644
index 0000000..6559f16
--- /dev/null
+++ b/Mac/Lib/test/test_suite.py
@@ -0,0 +1,29 @@
+#
+# Test of generated AE modules.
+#
+import addpack
+addpack.addpack('Tools')
+addpack.addpack('bgen')
+addpack.addpack('ae')
+import sys
+import macfs
+
+import aetools
+from AppleScript_Suite import AppleScript_Suite
+from Required_Suite import Required_Suite
+from Standard_Suite import Standard_Suite
+
+class ScriptableEditor(aetools.TalkTo, AppleScript_Suite, Required_Suite,
+ Standard_Suite):
+
+ def __init__(self):
+ aetools.TalkTo.__init__(self, 'quil')
+ self.activate()
+
+app = ScriptableEditor()
+rv = app.open(macfs.FSSpec(sys.argv[0]))
+print 'Opened', sys.argv[0]
+print 'Return value:', rv
+rv = app.get(aetools.Word(10, aetools.Document(1)))
+print 'Got word 10 doc 1:', rv
+sys.exit(1)