eptm_dashboard/.venv/lib/python3.12/site-packages/qrcode/tests/test_util.py

11 lines
207 B
Python

import pytest
from qrcode import util
def test_check_wrong_version():
with pytest.raises(ValueError):
util.check_version(0)
with pytest.raises(ValueError):
util.check_version(41)