diff options
author | Stuart Halloway <stu@thinkrelevance.com> | 2010-07-07 10:01:11 -0400 |
---|---|---|
committer | Stuart Halloway <stu@thinkrelevance.com> | 2010-07-09 15:02:42 -0400 |
commit | 836bc44afff8ac17233565447e8a289aea3203c4 (patch) | |
tree | a67eae191c0653e808c7f0ed3b2e23b71cb653e2 /test/clojure/test_clojure/java/shell.clj | |
parent | 0d39db4990e5ca2d3f4450f57ab15941e03b2e3b (diff) |
#392 de-uglify option names for sh
Signed-off-by: Stuart Halloway <stu@thinkrelevance.com>
Diffstat (limited to 'test/clojure/test_clojure/java/shell.clj')
-rw-r--r-- | test/clojure/test_clojure/java/shell.clj | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/clojure/test_clojure/java/shell.clj b/test/clojure/test_clojure/java/shell.clj index 964e68c2..d3db7db0 100644 --- a/test/clojure/test_clojure/java/shell.clj +++ b/test/clojure/test_clojure/java/shell.clj @@ -15,10 +15,10 @@ (deftest test-parse-args (are [x y] (= x y) - [[] {:inenc platform-enc :outenc platform-enc :dir nil :env nil}] (#'sh/parse-args []) - [["ls"] {:inenc platform-enc :outenc platform-enc :dir nil :env nil}] (#'sh/parse-args ["ls"]) - [["ls" "-l"] {:inenc platform-enc :outenc platform-enc :dir nil :env nil}] (#'sh/parse-args ["ls" "-l"]) - [["ls"] {:inenc platform-enc :outenc "ISO-8859-1" :dir nil :env nil}] (#'sh/parse-args ["ls" :outenc "ISO-8859-1"]))) + [[] {:in-enc platform-enc :out-enc platform-enc :dir nil :env nil}] (#'sh/parse-args []) + [["ls"] {:in-enc platform-enc :out-enc platform-enc :dir nil :env nil}] (#'sh/parse-args ["ls"]) + [["ls" "-l"] {:in-enc platform-enc :out-enc platform-enc :dir nil :env nil}] (#'sh/parse-args ["ls" "-l"]) + [["ls"] {:in-enc platform-enc :out-enc "ISO-8859-1" :dir nil :env nil}] (#'sh/parse-args ["ls" :out-enc "ISO-8859-1"]))) (deftest test-with-sh-dir (are [x y] (= x y) |