This repository has been archived on 2024-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-26/mockenv/lib/python3.6/site-packages/qrcode/tests/test_util.py

14 lines
278 B
Python
Raw Normal View History

2022-07-22 12:43:59 +02:00
import unittest
from qrcode import util
class UtilTests(unittest.TestCase):
def test_check_wrong_version(self):
with self.assertRaises(ValueError):
util.check_version(0)
with self.assertRaises(ValueError):
util.check_version(41)