()
| 17 | |
| 18 | |
| 19 | def test_render_svg_path(): |
| 20 | qr = qrcode.QRCode() |
| 21 | qr.add_data(UNICODE_TEXT) |
| 22 | img = qr.make_image(image_factory=svg.SvgPathImage) |
| 23 | img.save(io.BytesIO()) |
| 24 | |
| 25 | |
| 26 | def test_render_svg_fragment(): |
nothing calls this directly
no test coverage detected