()
| 36 | |
| 37 | |
| 38 | def test_saving_svg_to_byteio() -> None: |
| 39 | rv = BytesIO() |
| 40 | EAN13(str(100000902922), writer=SVGWriter()).write(rv) |
| 41 | |
| 42 | with open(f"{TESTPATH}/somefile.svg", "wb") as f: |
| 43 | EAN13("100000011111", writer=SVGWriter()).write(f) |
| 44 | |
| 45 | |
| 46 | def test_saving_svg_to_byteio_with_guardbar() -> None: |