()
| 38 | |
| 39 | |
| 40 | def test_ean_checksum_generated_placeholder() -> None: |
| 41 | ean = EAN13("977114487500X") # input has 13 digits |
| 42 | assert ean.calculate_checksum() == 7 |
| 43 | assert ean.ean == "9771144875007" |
| 44 | |
| 45 | |
| 46 | @pytest.mark.skipif(sys.platform == "win32", reason="no /dev/null") |
nothing calls this directly
no test coverage detected