From 6eb36d8a2f317f2eb49832f3ee06f24204c9e4fb Mon Sep 17 00:00:00 2001 From: bd Date: Sat, 18 May 2024 14:34:37 -0600 Subject: Hello, Palindrome, & Number-Guesser code-bases --- hello/hello-test.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 hello/hello-test.scm (limited to 'hello/hello-test.scm') diff --git a/hello/hello-test.scm b/hello/hello-test.scm new file mode 100644 index 0000000..1865112 --- /dev/null +++ b/hello/hello-test.scm @@ -0,0 +1,20 @@ +(use-modules (srfi srfi-64) + (hello)) + +(test-begin "harness") + + +(test-equal "test-hello" + "hello world\n" + (hi)) + +(test-equal "test-hello-bd" + "hello bd\n" + (hi "bd")) + +(test-equal "test-hello-db" + "hello db\n" + (hi "db")) + + +(test-end "harness") -- cgit v1.2.3