()
| 197 | |
| 198 | |
| 199 | def 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 | |
| 208 | def test_print_ascii(): |
nothing calls this directly
no test coverage detected