
Python 2.7 EOL is arriving on 2020-01-01: https://pythonclock.org/ This will allow us to use Python 3 only libraries, like python-barcode, which can maintain a reduced, simpler codebase, due to only one version to support. Closes #371. Signed-off-by: Romain Porte <microjoe@microjoe.org>
18 lines
504 B
Python
18 lines
504 B
Python
#!/usr/bin/python
|
|
"""very basic test cases that load the classes
|
|
|
|
: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>`_
|
|
:license: MIT
|
|
"""
|
|
|
|
|
|
import escpos.printer as printer
|
|
|
|
|
|
def test_instantiation():
|
|
"""test the instantiation of a escpos-printer class and basic printing"""
|
|
instance = printer.Dummy()
|
|
instance.text('This is a test\n')
|