diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/run.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/run.scm b/tests/run.scm index 13313e5..ff7896d 100644 --- a/tests/run.scm +++ b/tests/run.scm @@ -29,6 +29,10 @@ "hi, there\n" (run/string (echo "hi, there"))) + (test "Unquote-splicing run/string" + "hi, there\n" + (run/string (echo ,@(list "hi," "there")))) + (test "Simple run/sexp" '("hi, there") (run/sexp (echo "(\"hi, there\") trailing stuff is ignored"))) @@ -146,4 +150,4 @@ (test-end) -(test-exit)
\ No newline at end of file +(test-exit) |