()
| 253 | |
| 254 | |
| 255 | def test_get_matrix_border(): |
| 256 | qr = qrcode.QRCode(border=1) |
| 257 | qr.add_data("1") |
| 258 | matrix = [row[1:-1] for row in qr.get_matrix()[1:-1]] |
| 259 | assert matrix == qr.modules |
| 260 | |
| 261 | |
| 262 | def test_negative_size_at_construction(): |
nothing calls this directly
no test coverage detected