summaryrefslogtreecommitdiff
path: root/tests/scene.scm
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2023-05-13 21:12:20 -0400
committerDavid Thompson <dthompson2@worcester.edu>2023-05-13 21:12:20 -0400
commit420ee870c14f26747103ced6a0f0a7481b802b86 (patch)
tree3e2451b25b26c5c209b82e2c1559813522407b98 /tests/scene.scm
parent4d754131006679ebe3314df600c2cc1760335dcd (diff)
Remove $ syntax.
Conflicts with goblins.
Diffstat (limited to 'tests/scene.scm')
-rw-r--r--tests/scene.scm13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/scene.scm b/tests/scene.scm
index 533c738..af340cc 100644
--- a/tests/scene.scm
+++ b/tests/scene.scm
@@ -9,19 +9,6 @@
(define-class <test-mode> (<major-mode>))
(with-tests "scene"
- (test-group "$"
- (let ((scene (make <scene>)))
- (test-eq "no arguments"
- (with-scene scene
- ($))
- scene))
- (let ((scene (make <scene>))
- (node (make <node> #:name 'foo)))
- (test-eq "one argument"
- (with-scene scene
- (attach-to scene node)
- ($ foo))
- node)))
(let ((scene (make <scene>))
(node (make <node> #:name 'foo)))
(test-eq "add-to-scene"