# -*- coding: utf-8 -*- """ PHP Tests ~~~~~~~~~ :copyright: Copyright 2006-2019 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 = '\n' tokens = [ (Token.Comment.Preproc, ''), (Token.Other, '\n'), ] assert list(lexer.get_tokens(fragment)) == tokens