From 5601c7ce365b32ddf3e150082510660b8e4925c2 Mon Sep 17 00:00:00 2001 From: bd Date: Sat, 18 May 2024 21:16:28 -0600 Subject: Initial bubble-sort commit --- bubble/bubble-sort-test.scm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bubble/bubble-sort-test.scm (limited to 'bubble/bubble-sort-test.scm') 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") -- cgit v1.2.3