aboutsummaryrefslogtreecommitdiff
path: root/tests/world-test.scm
diff options
context:
space:
mode:
authorGene Pasquet <dev@etenil.net>2026-04-18 05:49:34 +0100
committerGene Pasquet <dev@etenil.net>2026-04-18 05:49:34 +0100
commitc2085be2dd2a0cb3da05991847e35080915e547e (patch)
treee89a0f3c347b3106b15b69b09dcf29f93a7ef627 /tests/world-test.scm
parent38eee24832fe6da4f135cae455881ab97953b23a (diff)
rename modules
Diffstat (limited to 'tests/world-test.scm')
-rw-r--r--tests/world-test.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/world-test.scm b/tests/world-test.scm
index 8cbe4f2..0915cd2 100644
--- a/tests/world-test.scm
+++ b/tests/world-test.scm
@@ -7,7 +7,7 @@
(only srfi-1 every member make-list))
;; Create a mock tilemap module to avoid SDL dependency
-(module downstroke-tilemap *
+(module (downstroke tilemap) *
(import scheme (chicken base) defstruct)
(defstruct tileset
@@ -35,11 +35,11 @@
layers
objects))
-(import downstroke-tilemap)
+(import (downstroke tilemap))
;; Load entity module first (since world now imports entity)
(include "entity.scm")
-(import downstroke-entity)
+(import (downstroke entity))
(import (only (list-utils alist) plist->alist))
@@ -49,7 +49,7 @@
;; Load the module source directly
(include "world.scm")
;; Now import it to access the exported functions
-(import downstroke-world)
+(import (downstroke world))
;; Test suite for world module
(test-begin "world-module")