(m_png)
| 54 | |
| 55 | |
| 56 | def test_valid_png(m_png): |
| 57 | png = m_png._repr_png_() |
| 58 | img = PIL.Image.open(io.BytesIO(png)) |
| 59 | assert isinstance(img, PIL.PngImagePlugin.PngImageFile) |
| 60 | |
| 61 | |
| 62 | def test_valid_png_size(m_png): |
nothing calls this directly
no test coverage detected
searching dependent graphs…