
* migrate * abstract base class test * remove assert_equal in test_cli * remove nose from test_cli * remove nose dependencies * use tempfile * configure coverage * flag python version in name * enable comment * drop EOL py37
9 lines
168 B
Python
9 lines
168 B
Python
from escpos.printer import Dummy
|
|
|
|
|
|
def test_printer_dummy_clear():
|
|
printer = Dummy()
|
|
printer.text("Hello")
|
|
printer.clear()
|
|
assert printer.output == b""
|