MCPcopy Index your code
hub / github.com/lincolnloop/python-qrcode / test_svg_string

Function test_svg_string

qrcode/tests/test_qrcode_svg.py:33–40  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

31
32
33def test_svg_string():
34 qr = qrcode.QRCode()
35 qr.add_data(UNICODE_TEXT)
36 img = qr.make_image(image_factory=svg.SvgFragmentImage)
37 file_like = io.BytesIO()
38 img.save(file_like)
39 file_like.seek(0)
40 assert file_like.read() in img.to_string()
41
42
43def test_render_svg_with_background():

Callers

nothing calls this directly

Calls 4

add_dataMethod · 0.95
make_imageMethod · 0.95
to_stringMethod · 0.80
saveMethod · 0.45

Tested by

no test coverage detected