summaryrefslogtreecommitdiff
path: root/binary-search/binary-search-test.scm
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2024-06-09 23:20:44 -0600
committerbd <bdunahu@operationnull.com>2024-06-09 23:20:44 -0600
commitefb4865c81bfef747428303d5388fb1889db5769 (patch)
treefd27b383cb6c53f64faee37ec543052f14a21b4c /binary-search/binary-search-test.scm
parente29188413ec6c3243f7965b4408459a7517539b3 (diff)
Cleanup repository
Diffstat (limited to 'binary-search/binary-search-test.scm')
-rw-r--r--binary-search/binary-search-test.scm13
1 files changed, 0 insertions, 13 deletions
diff --git a/binary-search/binary-search-test.scm b/binary-search/binary-search-test.scm
deleted file mode 100644
index adbeacb..0000000
--- a/binary-search/binary-search-test.scm
+++ /dev/null
@@ -1,13 +0,0 @@
-(use-modules (srfi srfi-64)
- (binary-search))
-
-(test-begin "harness")
-
-
-(define bst (make-empty-bst))
-
-(test-assert "empty-bst-missing-zero"
- (not (bst-member-p bst 0)))
-
-
-(test-end "harness")