aboutsummaryrefslogtreecommitdiff
path: root/tests/physics-test.scm
diff options
context:
space:
mode:
authorGene Pasquet <dev@etenil.net>2026-04-05 23:44:12 +0100
committerGene Pasquet <dev@etenil.net>2026-04-05 23:44:12 +0100
commit300131ca5a19d9de5250579d944a52b067b2d60b (patch)
treebed560ea0f5f252e3f40576a14e2a7f19bb35662 /tests/physics-test.scm
parentb99ada53b715def5492c7d04c0d327fa7048e5d3 (diff)
Rename prefix from downstroke/ to downstroke-
Diffstat (limited to 'tests/physics-test.scm')
-rw-r--r--tests/physics-test.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/physics-test.scm b/tests/physics-test.scm
index 0a2c92b..858dec8 100644
--- a/tests/physics-test.scm
+++ b/tests/physics-test.scm
@@ -7,7 +7,7 @@
(only srfi-1 every member make-list fold iota))
;; Create a mock tilemap module to avoid SDL dependency
-(module downstroke/tilemap *
+(module downstroke-tilemap *
(import scheme (chicken base) defstruct)
(defstruct tileset
@@ -35,23 +35,23 @@
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)
;; Load world module first
(include "world.scm")
-(import downstroke/world)
+(import downstroke-world)
;; Load physics module
(include "physics.scm")
-(import downstroke/physics)
+(import downstroke-physics)
;; Load physics module
(include "input.scm")
-(import downstroke/input)
+(import downstroke-input)
;; Test suite for physics module
(test-begin "physics-module")