diff options
author | Matthäus G. Chajdas <dev@anteru.net> | 2021-11-21 16:59:38 +0100 |
---|---|---|
committer | Matthäus G. Chajdas <dev@anteru.net> | 2021-11-21 16:59:38 +0100 |
commit | 627e35deabfd37dec047f824ba4fbca6ace92316 (patch) | |
tree | 281ec42c6cdad8bef8d735df55ab6db31e922049 /tests/snippets | |
parent | f146f10b62e2f77fc128cb08e2600b01d4971019 (diff) | |
parent | 6ef47801b5249eeb052056e11e79b43cf29524f2 (diff) | |
download | pygments-git-627e35deabfd37dec047f824ba4fbca6ace92316.tar.gz |
Merge branch 'lexers_de' of https://github.com/blu-base/pygments into blu-base-lexers_de
Diffstat (limited to 'tests/snippets')
-rw-r--r-- | tests/snippets/json/test_basic.txt | 16 | ||||
-rw-r--r-- | tests/snippets/json/test_basic_bare.txt | 12 | ||||
-rw-r--r-- | tests/snippets/yaml/test_yaml.txt | 6 |
3 files changed, 17 insertions, 17 deletions
diff --git a/tests/snippets/json/test_basic.txt b/tests/snippets/json/test_basic.txt index b6f595cb..f93b91b9 100644 --- a/tests/snippets/json/test_basic.txt +++ b/tests/snippets/json/test_basic.txt @@ -5,26 +5,26 @@ '{' Punctuation '"foo"' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace '"bar"' Literal.String.Double ',' Punctuation -' ' Text +' ' Text.Whitespace '"foo2"' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace '[' Punctuation '1' Literal.Number.Integer ',' Punctuation -' ' Text +' ' Text.Whitespace '2' Literal.Number.Integer ',' Punctuation -' ' Text +' ' Text.Whitespace '3' Literal.Number.Integer '],' Punctuation -' ' Text +' ' Text.Whitespace '"\\u0123"' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace '"\\u0123"' Literal.String.Double '}' Punctuation -'\n' Text +'\n' Text.Whitespace diff --git a/tests/snippets/json/test_basic_bare.txt b/tests/snippets/json/test_basic_bare.txt index de30f65e..785d264a 100644 --- a/tests/snippets/json/test_basic_bare.txt +++ b/tests/snippets/json/test_basic_bare.txt @@ -4,20 +4,20 @@ ---tokens--- '"foo"' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace '"bar"' Literal.String.Double ',' Punctuation -' ' Text +' ' Text.Whitespace '"foo2"' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace '[' Punctuation '1' Literal.Number.Integer ',' Punctuation -' ' Text +' ' Text.Whitespace '2' Literal.Number.Integer ',' Punctuation -' ' Text +' ' Text.Whitespace '3' Literal.Number.Integer ']' Punctuation -'\n' Text +'\n' Text.Whitespace diff --git a/tests/snippets/yaml/test_yaml.txt b/tests/snippets/yaml/test_yaml.txt index fcdd6105..0dd3911b 100644 --- a/tests/snippets/yaml/test_yaml.txt +++ b/tests/snippets/yaml/test_yaml.txt @@ -6,8 +6,8 @@ here: token # innocent: comment ---tokens--- 'here' Name.Tag ':' Punctuation -' ' Text +' ' Text.Whitespace 'token' Literal.Scalar.Plain -' ' Text +' ' Text.Whitespace '# innocent: comment' Comment.Single -'\n' Text +'\n' Text.Whitespace |