(mock_file)
| 18 | |
| 19 | @mock.patch(OPEN, new_callable=mock.mock_open, read_data=DATA) |
| 20 | def test_not_qrcode(mock_file): |
| 21 | update_manpage({"name": "not-qrcode"}) |
| 22 | mock_file.assert_not_called() |
| 23 | |
| 24 | |
| 25 | @mock.patch(OPEN, new_callable=mock.mock_open, read_data=DATA) |
nothing calls this directly
no test coverage detected