A library for parsing Tiled maps.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove baseTests from negative coords test

Should make it easier to have specific maps/tilesets to easily test just
the conditions we are wanting to verify - without having to copy the
same properties over to each test map.

-3
-3
test/maps.zig
··· 69 69 "map-infinite-base64-zstd-negative.tmj", 70 70 }; 71 71 72 - 73 72 for (test_maps) |test_map| { 74 73 var map = try Map.initFromFile(allocator, test_map); 75 74 defer map.deinit(allocator); 76 - 77 - try baseTests(map); 78 75 79 76 try expectEqual(true, map.infinite); 80 77