()
| 10 | |
| 11 | |
| 12 | def test_render_svg(): |
| 13 | qr = qrcode.QRCode() |
| 14 | qr.add_data(UNICODE_TEXT) |
| 15 | img = qr.make_image(image_factory=svg.SvgImage) |
| 16 | img.save(io.BytesIO()) |
| 17 | |
| 18 | |
| 19 | def test_render_svg_path(): |
nothing calls this directly
no test coverage detected