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")