2016-03-28 13:54:43 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
"""test the facility which enables usage of the with-statement
|
|
|
|
|
|
|
|
:author: `Patrick Kanzler <patrick.kanzler@fablab.fau.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
|
2016-03-28 13:54:43 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
import escpos.printer as printer
|
|
|
|
import escpos.escpos as escpos
|
2016-06-19 09:51:52 +00:00
|
|
|
|
2016-03-28 13:54:43 +00:00
|
|
|
|
|
|
|
def test_with_statement():
|
|
|
|
"""Use with statement"""
|
|
|
|
dummy_printer = printer.Dummy()
|
|
|
|
with escpos.EscposIO(dummy_printer) as p:
|
|
|
|
p.writelines('Some text.\n')
|
|
|
|
# TODO extend these tests as they don't really do anything at the moment
|