()
| 37 | |
| 38 | |
| 39 | def test_render_with_pattern(): |
| 40 | qr = qrcode.QRCode(mask_pattern=3) |
| 41 | qr.add_data(UNICODE_TEXT) |
| 42 | img = qr.make_image() |
| 43 | img.save(io.BytesIO()) |
| 44 | |
| 45 | |
| 46 | def test_render_styled_Image(): |
nothing calls this directly
no test coverage detected