sp-hydra-veil-gui/myenv/lib/python3.12/site-packages/qrcode/tests/test_util.py
2026-03-29 11:11:12 -04:00

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)