Cleaning some music collection converters.

This commit is contained in:
James Grogan 2024-11-10 11:50:33 +00:00
parent b39807db44
commit c09179f5da
8 changed files with 94 additions and 80 deletions

14
src/guile/hello-test.scm Normal file
View file

@ -0,0 +1,14 @@
(use-modules (srfi srfi-64)
(hello))
(test-begin "harness")
(test-equal "test-hello"
"Hello world!\n"
(hi))
(test-equal "test-named-hello"
"Hello bob!\n"
(hi "bob"))
(test-end "harness")