diff options
Diffstat (limited to 'bubble/bubble-sort-test.scm')
-rw-r--r-- | bubble/bubble-sort-test.scm | 12 |
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") |