This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2025-02-01/mockenv/lib/python3.6/site-packages/qrcode/tests/test_example.py
2022-07-22 16:13:59 +05:30

13 lines
250 B
Python

import unittest
from unittest import mock
from qrcode import run_example
class ExampleTest(unittest.TestCase):
@mock.patch('PIL.Image.Image.show')
def runTest(self, mock_show):
run_example()
mock_show.assert_called_with()