Permalink
Please sign in to comment.
Showing
with
24 additions
and 26 deletions.
7
ring-core/src/ring/util/test.clj
| @@ -0,0 +1,7 @@ | ||
| +(ns ring.util.test | ||
| + "Utilities for testing Ring components." | ||
| + (:import (java.io ByteArrayInputStream))) | ||
| + | ||
| +(defn string-input-stream [#^String s] | ||
| + "Returns a ByteArrayInputStream for the given String." | ||
| + (ByteArrayInputStream. (.getBytes s))) |
10
ring-core/test/ring/middleware/multipart_params_test.clj
11
ring-core/test/ring/middleware/params_test.clj
10
ring-devel/test/ring/handler/dump_test.clj
12
ring-devel/test/ring/middleware/lint_test.clj
0 comments on commit
8f13f08