Skip to content

Commit 94597ad

Browse files
swannodettecooljeanius
authored andcommitted
CLJS-3411: cljs.core/test behavior does not match docstring (clojure#226)
* correct doc string * support vars * add test case
1 parent 0a8d538 commit 94597ad

File tree

4 files changed

+39
-8
lines changed

4 files changed

+39
-8
lines changed

src/main/cljs/cljs/core.cljs

+10-3
Original file line numberDiff line numberDiff line change
@@ -11886,10 +11886,17 @@ reduces them without incurring seq initialization"
1188611886
x))
1188711887

1188811888
(defn test
11889-
"test [v] finds fn at key :test in var metadata and calls it,
11890-
presuming failure will throw exception"
11889+
"test [v] - if var, finds fn at key :test in var metadata, if function, finds
11890+
special test property. Calls it, presuming failure will throw exception.
11891+
11892+
Examples:
11893+
11894+
(test my-fn) ;; :ok
11895+
(test #'my-fn) ;; :ok"
1189111896
[v]
11892-
(let [f (.-cljs$lang$test v)]
11897+
(let [f (if (instance? Var v)
11898+
(-> v meta :test)
11899+
(some-> v .-cljs$lang$test))]
1189311900
(if f
1189411901
(do (f) :ok)
1189511902
:no-test)))

src/test/cljs/cljs/core_test.cljs

+3-3
Original file line numberDiff line numberDiff line change
@@ -2006,7 +2006,7 @@
20062006
IDeref
20072007
(-deref [_]
20082008
(:x @a))
2009-
2009+
20102010
ISwap
20112011
(-swap! [o f]
20122012
(:x (swap! a update :x f)))
@@ -2016,7 +2016,7 @@
20162016
(:x (swap! a update :x f x y)))
20172017
(-swap! [o f x y zs]
20182018
(:x (swap! a #(apply update % :x f x y zs))))
2019-
2019+
20202020
IReset
20212021
(-reset! [o new-value]
20222022
(:x (swap! a assoc :x new-value))))]
@@ -2031,7 +2031,7 @@
20312031
(is (= 11 @c))
20322032
(is (= 0 (reset! c 0)))
20332033
(is (= 0 @c))
2034-
2034+
20352035
(is (= [0 1] (swap-vals! c inc)))
20362036
(is (= 1 @c))
20372037
(is (= [1 2] (swap-vals! c + 1)))

src/test/cljs/cljs/var_test.cljs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
;; Copyright (c) Rich Hickey. All rights reserved.
2+
;; The use and distribution terms for this software are covered by the
3+
;; Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
4+
;; which can be found in the file epl-v10.html at the root of this distribution.
5+
;; By using this software in any fashion, you are agreeing to be bound by
6+
;; the terms of this license.
7+
;; You must not remove this notice, or any other, from this software.
8+
9+
(ns cljs.var-test
10+
(:require [cljs.test :refer-macros [deftest is testing]]))
11+
12+
(defn cljs-3411-function
13+
"this function adds two numbers"
14+
{:test #(do
15+
(assert (= (cljs-3411-function 2 3) 5))
16+
(assert (= (cljs-3411-function 4 4) 8)))}
17+
([x y] (+ x y)))
18+
19+
(deftest cljs-3411
20+
(testing "cljs.core/test respects docstring"
21+
(is (= :ok (test cljs-3411-function)))
22+
(is (= :ok (test #'cljs-3411-function)))))

src/test/cljs/test_runner.cljs

+4-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
[cljs.inference-test]
5858
[cljs.walk-test]
5959
[cljs.repl-test]
60-
[cljs.extend-to-native-test]))
60+
[cljs.extend-to-native-test]
61+
[cljs.var-test]))
6162

6263
(set! *print-newline* false)
6364

@@ -116,4 +117,5 @@
116117
'cljs.inference-test
117118
'cljs.walk-test
118119
'cljs.repl-test
119-
'cljs.extend-to-native-test)
120+
'cljs.extend-to-native-test
121+
'cljs.var-test)

0 commit comments

Comments
 (0)