python-escpos/test/test_function_panel_button.py

26 lines
766 B
Python
Raw Normal View History

2016-03-10 15:01:35 +00:00
#!/usr/bin/python
"""tests for panel button function
: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-10 15:01:35 +00:00
"""
import escpos.printer as printer
def test_function_panel_button_on():
"""test the panel button function (enabling) by comparing output"""
2017-05-21 22:44:22 +00:00
instance = printer.Dummy()
2016-03-10 15:01:35 +00:00
instance.panel_buttons()
2021-10-30 16:15:22 +00:00
assert instance.output == b"\x1B\x63\x35\x00"
2016-03-10 15:01:35 +00:00
def test_function_panel_button_off():
"""test the panel button function (disabling) by comparing output"""
2017-05-21 22:44:22 +00:00
instance = printer.Dummy()
2016-03-10 15:01:35 +00:00
instance.panel_buttons(False)
2021-10-30 16:15:22 +00:00
assert instance.output == b"\x1B\x63\x35\x01"