add dead simple tests for PPM files

This commit is contained in:
Rasmus Moorats 2022-01-07 15:50:43 +02:00
parent 6f654e32bc
commit 158b279926
No known key found for this signature in database
GPG key ID: FE14255A6AE7241C
6 changed files with 17 additions and 0 deletions

View file

@ -10,6 +10,7 @@ import
test_paints,
test_paths,
test_png,
test_ppm,
test_qoi,
test_svg,
../examples/text,

View file

@ -0,0 +1,8 @@
P3
# feep.p3.master.ppm
4 4
15
0 0 0 0 0 0 0 0 0 15 0 15
0 0 0 0 15 7 0 0 0 0 0 0
0 0 0 0 0 0 0 15 7 0 0 0
15 0 15 0 0 0 0 0 0 0 0 0

Binary file not shown.

Binary file not shown.

Binary file not shown.

8
tests/test_ppm.nim Normal file
View file

@ -0,0 +1,8 @@
import pixie/fileformats/ppm
block:
for format in @["p3", "p6"]:
let image = decodePpm(readFile(
"tests/fileformats/ppm/feep." & $format & ".master.ppm"
))
writeFile("tests/fileformats/ppm/feep." & $format & ".ppm", encodePpm(image))