Files
ETB/ETB-API/venv/lib/python3.12/site-packages/qrcode/tests/test_example.py
Iliyan Angelov 6b247e5b9f Updates
2025-09-19 11:58:53 +03:00

14 lines
244 B
Python

from unittest import mock
import pytest
from qrcode import run_example
pytest.importorskip("PIL", reason="Requires PIL")
@mock.patch("PIL.Image.Image.show")
def test_example(mock_show):
run_example()
mock_show.assert_called_with()