summaryrefslogtreecommitdiff
path: root/bubble/bubble-sort-test.scm
blob: c870577dd8da3e9fc7188ab749f1bf94fa1a3095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(use-modules (srfi srfi-64)
             (bubble-sort))

(test-begin "harness")


(test-equal "empty"
  '()
  (bubble-sort '()))


(test-end "harness")