aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/lexTests.py
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-01-29 21:48:14 +1100
committerNeil <nyamatongwe@gmail.com>2019-01-29 21:48:14 +1100
commit06a3fcba8e3282aa52f90cbf6f2d1aad947a600c (patch)
tree5f0de56a5400d6d5875a13515b5ea8b9133c3ad2 /test/lexTests.py
parent16c6d58b93c8afa3391b63234ead3fc5318b2f48 (diff)
downloadscintilla-mirror-06a3fcba8e3282aa52f90cbf6f2d1aad947a600c.tar.gz
Add unit test for Tcl lexer.
Diffstat (limited to 'test/lexTests.py')
-rw-r--r--test/lexTests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lexTests.py b/test/lexTests.py
index 92042aa08..eb38b7af7 100644
--- a/test/lexTests.py
+++ b/test/lexTests.py
@@ -176,5 +176,8 @@ class TestLexers(unittest.TestCase):
[b"keyword1", b"keyword2", b"", b"keyword4", b"keyword5",
b"keyword6", b"keyword7"])
+ def testTCL(self):
+ self.LexExample("x.tcl", b"tcl", [b"proc set socket vwait"])
+
if __name__ == '__main__':
Xite.main("lexTests")