We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cb2d90 commit 83b7694Copy full SHA for 83b7694
1 file changed
test/clojure/core_test/eval.cljc
@@ -27,6 +27,10 @@
27
nil nil
28
:a-keyword :a-keyword))
29
30
+ (testing "Functions"
31
+ (is (fn? (eval (fn [x] x))))
32
+ (is (fn? (eval +))))
33
+
34
(testing "Symbol resolution"
35
;; namespace qualified
36
(is (= 42 (eval 'clojure.core-test.eval/x))))
0 commit comments