diff options
author | Stephen C. Gilardi <squeegee@squeegee-mbp.scgilardi.selfip.net> | 2009-06-30 13:09:24 -0400 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2009-07-09 23:21:37 -0400 |
commit | 12888faab8f5c7bc13da5a8f506c2a594c48500c (patch) | |
tree | 2d05e47ffa0619e13aa15919b2a2ee525631f4d1 | |
parent | ab7947e68a5b435f243790e197cfdb781d47986f (diff) |
move with-precision tests to that section of vars.clj Fixes #137
Signed-off-by: Chouser <chouser@n01se.net>
-rw-r--r-- | test/clojure/test_clojure/vars.clj | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/clojure/test_clojure/vars.clj b/test/clojure/test_clojure/vars.clj index 540495f3..cbdc72d9 100644 --- a/test/clojure/test_clojure/vars.clj +++ b/test/clojure/test_clojure/vars.clj @@ -25,6 +25,11 @@ (eval `(binding [a 4] a)) 4 ; regression in Clojure SVN r1370 )) +; with-local-vars var-get var-set alter-var-root [var? (predicates.clj)] +; with-in-str with-out-str +; with-open +; with-precision + (deftest test-with-precision (are [x y] (= x y) (with-precision 4 (+ 3.5555555M 1)) 4.556M @@ -45,11 +50,6 @@ (+ 3.55555555555555M 1)) 4.5555556M))) -; with-local-vars var-get var-set alter-var-root [var? (predicates.clj)] -; with-in-str with-out-str -; with-open -; with-precision - ; set-validator get-validator ; doc find-doc test |