diff options
author | Matthäus G. Chajdas <dev@anteru.net> | 2020-09-08 20:33:25 +0200 |
---|---|---|
committer | Matthäus G. Chajdas <dev@anteru.net> | 2020-09-08 20:33:25 +0200 |
commit | 203ef1eff6daebab6f95b0b49e6e6a58168073fb (patch) | |
tree | 7defa199f48a34787f980b6400d8bbaa9380039a /tests/test_kotlin.py | |
parent | e09d4e0cf23d7c6069ddc690942ceb4cd23fd556 (diff) | |
parent | b2c91c70ee536b0472100d1273818f8bb45529fe (diff) | |
download | pygments-git-bug/angular-html.tar.gz |
Merge branch 'master' into bug/angular-htmlbug/angular-html
# Conflicts:
# tests/test_shell.py
Diffstat (limited to 'tests/test_kotlin.py')
-rw-r--r-- | tests/test_kotlin.py | 158 |
1 files changed, 79 insertions, 79 deletions
diff --git a/tests/test_kotlin.py b/tests/test_kotlin.py index 2f0eb376..9b9e898d 100644 --- a/tests/test_kotlin.py +++ b/tests/test_kotlin.py @@ -19,115 +19,115 @@ def lexer(): def test_can_cope_with_backtick_names_in_functions(lexer): - fragment = u'fun `wo bble`' + fragment = 'fun `wo bble`' tokens = [ - (Keyword, u'fun'), - (Text, u' '), - (Name.Function, u'`wo bble`'), - (Text, u'\n') + (Keyword, 'fun'), + (Text, ' '), + (Name.Function, '`wo bble`'), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens def test_can_cope_with_commas_and_dashes_in_backtick_Names(lexer): - fragment = u'fun `wo,-bble`' + fragment = 'fun `wo,-bble`' tokens = [ - (Keyword, u'fun'), - (Text, u' '), - (Name.Function, u'`wo,-bble`'), - (Text, u'\n') + (Keyword, 'fun'), + (Text, ' '), + (Name.Function, '`wo,-bble`'), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens def test_can_cope_with_destructuring(lexer): - fragment = u'val (a, b) = ' + fragment = 'val (a, b) = ' tokens = [ - (Keyword, u'val'), - (Text, u' '), - (Punctuation, u'('), - (Name.Property, u'a'), - (Punctuation, u','), - (Text, u' '), - (Name.Property, u'b'), - (Punctuation, u')'), - (Text, u' '), - (Punctuation, u'='), - (Text, u' '), - (Text, u'\n') + (Keyword, 'val'), + (Text, ' '), + (Punctuation, '('), + (Name.Property, 'a'), + (Punctuation, ','), + (Text, ' '), + (Name.Property, 'b'), + (Punctuation, ')'), + (Text, ' '), + (Punctuation, '='), + (Text, ' '), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens def test_can_cope_generics_in_destructuring(lexer): - fragment = u'val (a: List<Something>, b: Set<Wobble>) =' + fragment = 'val (a: List<Something>, b: Set<Wobble>) =' tokens = [ - (Keyword, u'val'), - (Text, u' '), - (Punctuation, u'('), - (Name.Property, u'a'), - (Punctuation, u':'), - (Text, u' '), - (Name.Property, u'List'), - (Punctuation, u'<'), - (Name, u'Something'), - (Punctuation, u'>'), - (Punctuation, u','), - (Text, u' '), - (Name.Property, u'b'), - (Punctuation, u':'), - (Text, u' '), - (Name.Property, u'Set'), - (Punctuation, u'<'), - (Name, u'Wobble'), - (Punctuation, u'>'), - (Punctuation, u')'), - (Text, u' '), - (Punctuation, u'='), - (Text, u'\n') + (Keyword, 'val'), + (Text, ' '), + (Punctuation, '('), + (Name.Property, 'a'), + (Punctuation, ':'), + (Text, ' '), + (Name.Property, 'List'), + (Punctuation, '<'), + (Name, 'Something'), + (Punctuation, '>'), + (Punctuation, ','), + (Text, ' '), + (Name.Property, 'b'), + (Punctuation, ':'), + (Text, ' '), + (Name.Property, 'Set'), + (Punctuation, '<'), + (Name, 'Wobble'), + (Punctuation, '>'), + (Punctuation, ')'), + (Text, ' '), + (Punctuation, '='), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens def test_can_cope_with_generics(lexer): - fragment = u'inline fun <reified T : ContractState> VaultService.queryBy(): Vault.Page<T> {' + fragment = 'inline fun <reified T : ContractState> VaultService.queryBy(): Vault.Page<T> {' tokens = [ - (Keyword, u'inline fun'), - (Text, u' '), - (Punctuation, u'<'), - (Keyword, u'reified'), - (Text, u' '), - (Name, u'T'), - (Text, u' '), - (Punctuation, u':'), - (Text, u' '), - (Name, u'ContractState'), - (Punctuation, u'>'), - (Text, u' '), - (Name.Class, u'VaultService'), - (Punctuation, u'.'), - (Name.Function, u'queryBy'), - (Punctuation, u'('), - (Punctuation, u')'), - (Punctuation, u':'), - (Text, u' '), - (Name, u'Vault'), - (Punctuation, u'.'), - (Name, u'Page'), - (Punctuation, u'<'), - (Name, u'T'), - (Punctuation, u'>'), - (Text, u' '), - (Punctuation, u'{'), - (Text, u'\n') + (Keyword, 'inline fun'), + (Text, ' '), + (Punctuation, '<'), + (Keyword, 'reified'), + (Text, ' '), + (Name, 'T'), + (Text, ' '), + (Punctuation, ':'), + (Text, ' '), + (Name, 'ContractState'), + (Punctuation, '>'), + (Text, ' '), + (Name.Class, 'VaultService'), + (Punctuation, '.'), + (Name.Function, 'queryBy'), + (Punctuation, '('), + (Punctuation, ')'), + (Punctuation, ':'), + (Text, ' '), + (Name, 'Vault'), + (Punctuation, '.'), + (Name, 'Page'), + (Punctuation, '<'), + (Name, 'T'), + (Punctuation, '>'), + (Text, ' '), + (Punctuation, '{'), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens def test_should_cope_with_multiline_comments(lexer): - fragment = u'"""\nthis\nis\na\ncomment"""' + fragment = '"""\nthis\nis\na\ncomment"""' tokens = [ - (String, u'"""\nthis\nis\na\ncomment"""'), - (Text, u'\n') + (String, '"""\nthis\nis\na\ncomment"""'), + (Text, '\n') ] assert list(lexer.get_tokens(fragment)) == tokens |