summaryrefslogtreecommitdiff
path: root/tests/test_php.py
diff options
context:
space:
mode:
authorOleh Prypin <oleh@pryp.in>2021-01-18 20:39:02 +0100
committerGitHub <noreply@github.com>2021-01-18 20:39:02 +0100
commitf0445be718da83541ea3401aad882f3937147263 (patch)
tree26bd361a410d8bea33ce259321fad63e7f3c61af /tests/test_php.py
parent423c44a451db7e5f63147b1c1519661d745fc43a (diff)
downloadpygments-git-f0445be718da83541ea3401aad882f3937147263.tar.gz
Replace tests that assert on token output with auto-updatable samples (#1649)
Diffstat (limited to 'tests/test_php.py')
-rw-r--r--tests/test_php.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/test_php.py b/tests/test_php.py
deleted file mode 100644
index fe67f4c2..00000000
--- a/tests/test_php.py
+++ /dev/null
@@ -1,36 +0,0 @@
-"""
- PHP Tests
- ~~~~~~~~~
-
- :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
- :license: BSD, see LICENSE for details.
-"""
-
-import pytest
-
-from pygments.lexers import PhpLexer
-from pygments.token import Token
-
-
-@pytest.fixture(scope='module')
-def lexer():
- yield PhpLexer()
-
-
-def test_string_escaping_run(lexer):
- fragment = '<?php $x="{\\""; ?>\n'
- tokens = [
- (Token.Comment.Preproc, '<?php'),
- (Token.Text, ' '),
- (Token.Name.Variable, '$x'),
- (Token.Operator, '='),
- (Token.Literal.String.Double, '"'),
- (Token.Literal.String.Double, '{'),
- (Token.Literal.String.Escape, '\\"'),
- (Token.Literal.String.Double, '"'),
- (Token.Punctuation, ';'),
- (Token.Text, ' '),
- (Token.Comment.Preproc, '?>'),
- (Token.Other, '\n'),
- ]
- assert list(lexer.get_tokens(fragment)) == tokens