diff options
author | Peter Bex <peter@more-magic.net> | 2012-10-01 17:30:42 +0100 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2012-10-01 17:30:42 +0100 |
commit | 8b6689df84f21ce709249c5c2ca8dbdfb87282eb (patch) | |
tree | 07575ab5d91556aabce945c1ab5558aeb1af07bd | |
parent | 11db27b4994ddcc1073ceb2b69b73601e29ed164 (diff) | |
download | scsh-process-8b6689df84f21ce709249c5c2ca8dbdfb87282eb.tar.gz |
Rename test directory to tests (thanks Moritz!)
-rw-r--r-- | tests/run.scm (renamed from test/run.scm) | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/run.scm b/tests/run.scm index d190c95..c0a2a7e 100644 --- a/test/run.scm +++ b/tests/run.scm @@ -43,6 +43,10 @@ '(("hi, there") (a b c)) (run/sexps (echo "(\"hi, there\") (a b c)"))) + (test "Simple run/port" + '(a b c) + (read (run/port (echo "(a b c)")))) + (test "Nested output redirection with pipe+" "foo\n" (run/string (pipe+ ((1 0)) |