()
| 14 | |
| 15 | |
| 16 | def test_render_pil(): |
| 17 | qr = qrcode.QRCode() |
| 18 | qr.add_data(UNICODE_TEXT) |
| 19 | img = qr.make_image() |
| 20 | img.save(io.BytesIO()) |
| 21 | assert isinstance(img.get_image(), Image.Image) |
| 22 | |
| 23 | |
| 24 | @pytest.mark.parametrize("back_color", ["TransParent", "red", (255, 195, 235)]) |
nothing calls this directly
no test coverage detected