python-escpos/test/test_functions/test_function_cashdraw.py

15 lines
381 B
Python
Raw Permalink Normal View History

#!/usr/bin/python
import pytest
import escpos.printer as printer
from escpos.exceptions import CashDrawerError
def test_raise_CashDrawerError() -> None:
2021-10-30 16:15:22 +00:00
"""should raise an error if the sequence is invalid."""
instance = printer.Dummy()
with pytest.raises(CashDrawerError):
# call with sequence that is too long
2021-10-30 16:15:22 +00:00
instance.cashdraw([1, 1, 1, 1, 1, 1])