diff options
author | Jean Abou-Samra <jean@abou-samra.fr> | 2023-02-23 16:41:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-23 16:41:01 +0100 |
commit | b1f8dddc0b72923f05ec07dc9856f7fc143f6b97 (patch) | |
tree | 275be16203ffafcc9775c1409646f9fb0ac12d53 /tests/snippets/json/test_constants.txt | |
parent | e589fee754a76e9600dcb42baaeb3372d9e163d7 (diff) | |
download | pygments-git-b1f8dddc0b72923f05ec07dc9856f7fc143f6b97.tar.gz |
More tests moved to snippets/ (#2351)
Diffstat (limited to 'tests/snippets/json/test_constants.txt')
-rw-r--r-- | tests/snippets/json/test_constants.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/snippets/json/test_constants.txt b/tests/snippets/json/test_constants.txt new file mode 100644 index 00000000..3d7e4d50 --- /dev/null +++ b/tests/snippets/json/test_constants.txt @@ -0,0 +1,14 @@ +---input--- +true +false +null + +---tokens--- +'true' Keyword.Constant +'\n' Text.Whitespace + +'false' Keyword.Constant +'\n' Text.Whitespace + +'null' Keyword.Constant +'\n' Text.Whitespace |