mirror of
https://github.com/python-escpos/python-escpos
synced 2025-06-25 08:38:43 +00:00
15 lines
210 B
Python
15 lines
210 B
Python
#!/usr/bin/python
|
|
|
|
import escpos.printer as printer
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def instance():
|
|
return printer.Dummy()
|
|
|
|
|
|
def test_soft_barcode_ean8(instance):
|
|
instance.soft_barcode("ean8", "1234")
|
|
|