summaryrefslogtreecommitdiff
path: root/booleans/booleans-test.scm
diff options
context:
space:
mode:
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")