summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorR. Tyler Ballance <tyler@slide.com>2009-06-27 19:56:42 -0700
committerR. Tyler Ballance <tyler@slide.com>2009-06-27 19:56:42 -0700
commit2300c937d9649f30f2bf7ad6a2f532ada19ddd28 (patch)
tree8805eeb810fd0210b66a3ff3847f83a366d01967 /src
parent5bd077be1f661f3939adebc1f905b8e0ea0a3f62 (diff)
downloadpython-cheetah-2300c937d9649f30f2bf7ad6a2f532ada19ddd28.tar.gz
Add the VerifyType to the Test.py runner
Diffstat (limited to 'src')
-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))
-
-
-
-