diff options
author | Peter Bex <peter@more-magic.net> | 2018-08-16 22:00:05 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2018-08-16 22:00:05 +0200 |
commit | b36f392a9a09bb666390260311df358c54cc0f8b (patch) | |
tree | a580a0d3be0a49635812b9827ad60935d4816eee /tests/run.scm | |
parent | 8362d124fa8df2c6fafd677c16f72facebe8ee1f (diff) | |
download | scsh-process-b36f392a9a09bb666390260311df358c54cc0f8b.tar.gz |
Wrap tests in module to make porting easier
Diffstat (limited to 'tests/run.scm')
-rw-r--r-- | tests/run.scm | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/run.scm b/tests/run.scm index 91389e2..98b6c25 100644 --- a/tests/run.scm +++ b/tests/run.scm @@ -1,7 +1,12 @@ +(module scsh-tests () + +(import chicken scheme) + #;(include "../scsh-process.scm") (use scsh-process) -(use test posix srfi-13 srfi-18 (only setup-api version>=?)) +(use test utils extras ports files posix + srfi-13 srfi-18 (only setup-api version>=?)) (test-begin "scsh-process") @@ -226,3 +231,4 @@ (test-end) (test-exit) +) |