summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_scriptpackages.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-04-15 21:40:30 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2003-04-15 21:40:30 (GMT)
commita95eab59206b02dcad7b82a933b0bd32926536b6 (patch)
treebabf368ee6e0f67992ee6fb5a8b86e4ad3d30734 /Lib/test/test_scriptpackages.py
parentee24e9cad018a1ade99977e1913f17a06346b6f2 (diff)
downloadcpython-a95eab59206b02dcad7b82a933b0bd32926536b6.zip
cpython-a95eab59206b02dcad7b82a933b0bd32926536b6.tar.gz
cpython-a95eab59206b02dcad7b82a933b0bd32926536b6.tar.bz2
Test SystemEvents too.
Diffstat (limited to 'Lib/test/test_scriptpackages.py')
-rw-r--r--Lib/test/test_scriptpackages.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/test_scriptpackages.py b/Lib/test/test_scriptpackages.py
index d653290..27adf8c 100644
--- a/Lib/test/test_scriptpackages.py
+++ b/Lib/test/test_scriptpackages.py
@@ -26,6 +26,9 @@ class TestScriptpackages(unittest.TestCase):
def test_StdSuites(self):
self._test_scriptpackage('StdSuites')
+ def test_SystemEvents(self):
+ self._test_scriptpackage('SystemEvents')
+
def test_Finder(self):
self._test_scriptpackage('Finder')
@@ -39,7 +42,7 @@ class TestScriptpackages(unittest.TestCase):
self._test_scriptpackage('Explorer')
def test_CodeWarrior(self):
- self._test_scriptpackage('CodeWarrior')
+ self._test_scriptpackage('CodeWarrior')
def test_main():
test_support.run_unittest(TestScriptpackages)