aboutsummaryrefslogtreecommitdiff
path: root/internal/game/map_test.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-27 17:26:23 -0400
committerhistoria <[not public]>2026-06-27 17:26:23 -0400
commit83f8f5447ec3baf85314ce7343f0e339d28bcc15 (patch)
treebf01d0da4eb7b72e0fd410a74fc0ed6d2bc42232 /internal/game/map_test.go
parent988b006a5bb9edb6465653566e7bdf8175347b8c (diff)
downloadthehouseoficarus-83f8f5447ec3baf85314ce7343f0e339d28bcc15.tar.gz
refactor: removed some redundant new map code
Diffstat (limited to 'internal/game/map_test.go')
-rw-r--r--internal/game/map_test.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/internal/game/map_test.go b/internal/game/map_test.go
index 05e70d0..4869d38 100644
--- a/internal/game/map_test.go
+++ b/internal/game/map_test.go
@@ -25,7 +25,6 @@ func writeTempRoom(t *testing.T, dir string, id int, body string) {
}
}
-
// TestMapConnectorGlyphs verifies the directional link rendering: bidirectional
// links draw a bar, one-way (or one-side-blocked) links draw a directional
// arrow, and links with no traversable direction draw a blocked 'X'.
@@ -105,8 +104,6 @@ func TestMapConnectorGlyphs(t *testing.T) {
}
}
-
-
func TestBuildTinyMap(t *testing.T) {
g := &Game{
Deps: Deps{World: world.New("../../data")},