()
| 100 | |
| 101 | |
| 102 | def test_bitmap_clone(): |
| 103 | bitmap = pycolmap.Bitmap(width=32, height=24, as_rgb=True) |
| 104 | cloned = bitmap.clone() |
| 105 | assert cloned.width == bitmap.width |
| 106 | assert cloned.height == bitmap.height |
| 107 | assert cloned.is_rgb == bitmap.is_rgb |
| 108 | |
| 109 | |
| 110 | def test_bitmap_clone_as_grey(): |