summaryrefslogtreecommitdiff
path: root/booleans/booleans-test.scm
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2024-05-18 21:18:24 -0600
committerbd <bdunahu@operationnull.com>2024-05-18 21:18:24 -0600
commit5a65e2da159703e20504b7b3a668e65312932394 (patch)
tree8c4e3520333ae427c65c9679c2d89b24eeb7a5ce /booleans/booleans-test.scm
parent5601c7ce365b32ddf3e150082510660b8e4925c2 (diff)
Remove outdated files
Diffstat (limited to 'booleans/booleans-test.scm')
-rw-r--r--booleans/booleans-test.scm16
1 files changed, 0 insertions, 16 deletions
diff --git a/booleans/booleans-test.scm b/booleans/booleans-test.scm
deleted file mode 100644
index 78a78be..0000000
--- a/booleans/booleans-test.scm
+++ /dev/null
@@ -1,16 +0,0 @@
-(use-modules (srfi srfi-64)
- (booleans))
-
-(test-begin "harness")
-
-
-(test-equal "test-true-inverted-is-false"
- #f
- (boolean-invert #t))
-
-(test-equal "test-true-inverted-is-false"
- #t
- (boolean-invert #f))
-
-
-(test-end "harness")