aboutsummaryrefslogtreecommitdiff
path: root/tests/ai-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/ai-test.scm
parentb99ada53b715def5492c7d04c0d327fa7048e5d3 (diff)
Rename prefix from downstroke/ to downstroke-
Diffstat (limited to 'tests/ai-test.scm')
-rw-r--r--tests/ai-test.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/ai-test.scm b/tests/ai-test.scm
index 9bb3d28..02a9806 100644
--- a/tests/ai-test.scm
+++ b/tests/ai-test.scm
@@ -1,5 +1,5 @@
;; Mock entity module for testing
-(module downstroke/entity *
+(module downstroke-entity *
(import scheme (chicken base) (chicken keyword))
(define (entity-ref entity key #!optional default)
(get-keyword key entity (if (procedure? default) default (lambda () default))))
@@ -12,18 +12,18 @@
(define (entity-type e) (entity-ref e #:type #f)))
;; Mock world module for testing
-(module downstroke/world *
+(module downstroke-world *
(import scheme (chicken base))
(define (scene-entities s) s)
(define (scene-find-tagged scene tag) #f))
(import (srfi 64)
states
- downstroke/entity
- downstroke/world)
+ downstroke-entity
+ downstroke-world)
(include "ai.scm")
-(import downstroke/ai)
+(import downstroke-ai)
(test-begin "ai")