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

Function test_print_ascii_stdout

qrcode/tests/test_qrcode.py:199–205  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

197
198
199def test_print_ascii_stdout():
200 qr = qrcode.QRCode()
201 with mock.patch("sys.stdout") as fake_stdout:
202 fake_stdout.isatty.return_value = None
203 with pytest.raises(OSError):
204 qr.print_ascii(tty=True)
205 assert fake_stdout.isatty.called
206
207
208def test_print_ascii():

Callers

nothing calls this directly

Calls 1

print_asciiMethod · 0.95

Tested by

no test coverage detected