(back_color)
| 23 | |
| 24 | @pytest.mark.parametrize("back_color", ["TransParent", "red", (255, 195, 235)]) |
| 25 | def test_render_pil_background(back_color): |
| 26 | qr = qrcode.QRCode() |
| 27 | qr.add_data(UNICODE_TEXT) |
| 28 | img = qr.make_image(back_color="TransParent") |
| 29 | img.save(io.BytesIO()) |
| 30 | |
| 31 | |
| 32 | def test_render_pil_with_rgb_color_tuples(): |
nothing calls this directly
no test coverage detected