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
commit867d324b771ee749a7ad31faf19baab7b1ccaa38 (patch)
tree1a85c1d7bb1de32dceb7fc9978e89d32a98d45d1 /test/lexTests.py
parent4b2d6cc8ac3970567bc75b4590e3737d8aa67b16 (diff)
downloadscintilla-mirror-867d324b771ee749a7ad31faf19baab7b1ccaa38.tar.gz
Backport: Add unit test for Tcl lexer.
Backport of changeset 7242:d2ac12d5ab0e.
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")