python-escpos/test/test_with_statement.py

22 lines
628 B
Python
Raw Normal View History

#!/usr/bin/python
"""test the facility which enables usage of the with-statement
:author: `Patrick Kanzler <dev@pkanzler.de>`_
:organization: `python-escpos <https://github.com/python-escpos>`_
:copyright: Copyright (c) 2016 `python-escpos <https://github.com/python-escpos>`_
2017-01-29 23:39:43 +00:00
:license: MIT
"""
import escpos.escpos as escpos
import escpos.printer as printer
def test_with_statement() -> None:
"""Use with statement
.. todo:: Extend these tests as they don't really do anything at the moment"""
dummy_printer = printer.Dummy()
with escpos.EscposIO(dummy_printer) as p:
2021-10-30 16:15:22 +00:00
p.writelines("Some text.\n")