diff options
| author | Gene Pasquet <dev@etenil.net> | 2026-04-18 05:49:34 +0100 |
|---|---|---|
| committer | Gene Pasquet <dev@etenil.net> | 2026-04-18 05:49:34 +0100 |
| commit | c2085be2dd2a0cb3da05991847e35080915e547e (patch) | |
| tree | e89a0f3c347b3106b15b69b09dcf29f93a7ef627 /tests/renderer-test.scm | |
| parent | 38eee24832fe6da4f135cae455881ab97953b23a (diff) | |
rename modules
Diffstat (limited to 'tests/renderer-test.scm')
| -rw-r--r-- | tests/renderer-test.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/renderer-test.scm b/tests/renderer-test.scm index 702a712..3a85c73 100644 --- a/tests/renderer-test.scm +++ b/tests/renderer-test.scm @@ -8,7 +8,7 @@ test) ;; Mock tilemap module -(module downstroke-tilemap * +(module (downstroke tilemap) * (import scheme (chicken base) defstruct) (defstruct tileset tilewidth tileheight spacing tilecount columns image-source image) (defstruct layer name width height map) @@ -16,7 +16,7 @@ (defstruct tile id rect) (define (tileset-tile ts id) (make-tile id: id rect: #f)) (define (tile-rect t) #f)) -(import downstroke-tilemap) +(import (downstroke tilemap)) ;; Mock sdl2 (module sdl2 * @@ -40,7 +40,7 @@ ;; Load entity module (include "entity.scm") -(import downstroke-entity) +(import (downstroke entity)) (import (only (list-utils alist) plist->alist)) @@ -49,11 +49,11 @@ ;; Load world module (include "world.scm") -(import downstroke-world) +(import (downstroke world)) ;; Load renderer module (include "renderer.scm") -(import downstroke-renderer) +(import (downstroke renderer)) (test-begin "renderer") |
