summaryrefslogtreecommitdiff
path: root/bubble/bubble-sort-test.scm
diff options
context:
space:
mode:
Diffstat (limited to 'bubble/bubble-sort-test.scm')
-rw-r--r--bubble/bubble-sort-test.scm12
1 files changed, 12 insertions, 0 deletions
diff --git a/bubble/bubble-sort-test.scm b/bubble/bubble-sort-test.scm
new file mode 100644
index 0000000..c870577
--- /dev/null
+++ b/bubble/bubble-sort-test.scm
@@ -0,0 +1,12 @@
+(use-modules (srfi srfi-64)
+ (bubble-sort))
+
+(test-begin "harness")
+
+
+(test-equal "empty"
+ '()
+ (bubble-sort '()))
+
+
+(test-end "harness")