summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-06-28 10:56:42 +0800
committerJames Abbatiello <abbeyj@gmail.com>2009-06-28 12:17:48 +0800
commitc3e0a4a092f07b1551ab6208b8bf607f4bd7dc61 (patch)
tree5d3b4a2aa08820b0c97b0ba1e874898997fcd677
parent0c0812234526fe2d920855d84001d6fc5603cd9c (diff)
downloadpython-cheetah-c3e0a4a092f07b1551ab6208b8bf607f4bd7dc61.tar.gz
Add the VerifyType to the Test.py runner
Signed-off-by: James Abbatiello <abbeyj@gmail.com>
-rwxr-xr-xsrc/Tests/Test.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Tests/Test.py b/src/Tests/Test.py
index e168fc9..080f4fa 100755
--- a/src/Tests/Test.py
+++ b/src/Tests/Test.py
@@ -21,6 +21,7 @@ import Template
import CheetahWrapper
import Regressions
import Unicode
+import VerifyType
suites = [
unittest.findTestCases(SyntaxAndOutput),
@@ -28,6 +29,7 @@ suites = [
unittest.findTestCases(Template),
unittest.findTestCases(Regressions),
unittest.findTestCases(Unicode),
+ unittest.findTestCases(VerifyType),
]
if not sys.platform.startswith('java'):
@@ -41,7 +43,3 @@ if __name__ == '__main__':
results = runner.run(unittest.TestSuite(suites))
-
-
-
-