Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
admin
/
installer
/
css
/
sass
/
sym404
/
root
/
usr
/
local
/
lib
/
python3.6
/
site-packages
/
qrcode
/
tests
:
test_example.py
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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()