Skip to content

Commit

Permalink
Added more language tests (#3131)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Oct 5, 2021
1 parent 3ef7153 commit 2f7f736
Show file tree
Hide file tree
Showing 120 changed files with 11,590 additions and 1,627 deletions.
14 changes: 14 additions & 0 deletions tests/languages/ada/punctuation_feature.test
@@ -0,0 +1,14 @@
. ..
, ; ( ) :

----------------------------------------------------

[
["punctuation", "."],
["punctuation", ".."],
["punctuation", ","],
["punctuation", ";"],
["punctuation", "("],
["punctuation", ")"],
["punctuation", ":"]
]
18 changes: 18 additions & 0 deletions tests/languages/applescript/punctuation_feature.test
@@ -0,0 +1,18 @@
{ } ( ) : ,
¬ « » 《 》

----------------------------------------------------

[
["punctuation", "{"],
["punctuation", "}"],
["punctuation", "("],
["punctuation", ")"],
["punctuation", ":"],
["punctuation", ","],
["punctuation", "¬"],
["punctuation", "«"],
["punctuation", "»"],
["punctuation", "《"],
["punctuation", "》"]
]
13 changes: 13 additions & 0 deletions tests/languages/aql/boolean_feature.test
@@ -0,0 +1,13 @@
true
false
TRUE
FALSE

----------------------------------------------------

[
["boolean", "true"],
["boolean", "false"],
["boolean", "TRUE"],
["boolean", "FALSE"]
]

0 comments on commit 2f7f736

Please sign in to comment.