diff options
author | Jad Altahan <xviyy@aol.com> | 2019-01-29 09:18:07 +1100 |
---|---|---|
committer | Jad Altahan <xviyy@aol.com> | 2019-01-29 09:18:07 +1100 |
commit | 8b99f2cfdd7ed2274afa7bf003850ce4213cbfd3 (patch) | |
tree | 5e175beedf3f5eabe9736449cdca8243dcaa1309 /test/lexTests.py | |
parent | 2f829dbd40a537043774508ed61da9ea92467355 (diff) | |
download | scintilla-mirror-8b99f2cfdd7ed2274afa7bf003850ce4213cbfd3.tar.gz |
Feature [feature-requests:#1260]. Fix inconsistency with dot styling in Nim.
Diffstat (limited to 'test/lexTests.py')
-rw-r--r-- | test/lexTests.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/lexTests.py b/test/lexTests.py index 2dbb1b3ad..92042aa08 100644 --- a/test/lexTests.py +++ b/test/lexTests.py @@ -156,6 +156,9 @@ class TestLexers(unittest.TestCase): def testLua(self): self.LexExample("x.lua", b"lua", [b"function end"]) + def testNim(self): + self.LexExample("x.nim", b"nim", [b"else end if let"]) + def testRuby(self): self.LexExample("x.rb", b"ruby", [b"class def end"]) |