
Drops Py3.7, improves typing and adds a mypy config, improves the docstrings and isorts the imports. * configure isort * sort with isort * add github action * enable flake8-docstrings * fix docstrings * add mypy env * no implicit optional * add type for raw * add some type hints
27 lines
620 B
Python
27 lines
620 B
Python
#!/usr/bin/python
|
|
|
|
import barcode.errors
|
|
import pytest
|
|
|
|
import escpos.printer as printer
|
|
|
|
|
|
@pytest.fixture
|
|
def instance():
|
|
return printer.Dummy()
|
|
|
|
|
|
def test_soft_barcode_ean8_invalid(instance):
|
|
"""test with an invalid barcode"""
|
|
with pytest.raises(barcode.errors.BarcodeError):
|
|
instance.barcode("1234", "ean8", force_software=True)
|
|
|
|
|
|
def test_soft_barcode_ean8(instance):
|
|
"""test with a valid ean8 barcode"""
|
|
instance.barcode("1234567", "ean8", force_software=True)
|
|
|
|
|
|
def test_soft_barcode_ean8_nocenter(instance):
|
|
instance.barcode("1234567", "ean8", align_ct=False, force_software=True)
|