Repository URL to install this package:
|
Version:
2.13.0 ▾
|
"""
Pygments IRC formatter tests
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from io import StringIO
from pygments.lexers import PythonLexer
from pygments.formatters import IRCFormatter
tokensource = list(PythonLexer().get_tokens("lambda x: 123"))
def test_correct_output():
hfmt = IRCFormatter()
houtfile = StringIO()
hfmt.format(tokensource, houtfile)
assert '\x0302lambda\x03 x: \x0302123\x03\n' == houtfile.getvalue()