forked from clj-python/libpython-clj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfncall_test.clj
26 lines (23 loc) · 1.03 KB
/
fncall_test.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(ns libpython-clj2.fncall-test
(:require [libpython-clj2.python :as py]
[clojure.test :refer :all]))
(py/initialize!)
(deftest complex-fn-test
(let [testmod (py/import-module "testcode")
testcases (py/py.- testmod complex_fn_testcases)]
(is (= (-> (get testcases "complex_fn(1, 2, c=10, d=10, e=10)")
(py/->jvm))
(-> (py/$a testmod complex_fn 1 2 :c 10 :d 10 :e 10)
(py/->jvm))))
(is (= (-> (get testcases "complex_fn(1, 2, 10, 11, 12, d=10, e=10)")
(py/->jvm))
(-> (py/$a testmod complex_fn 1 2 10 11 12 :d 10 :e 10)
(py/->jvm))))
(is (= (-> (get testcases "complex_fn(1, 2, c=10, d=10, e=10)")
(py/->jvm))
(-> (apply py/afn testmod "complex_fn" [1 2 :c 10 :d 10 :e 10])
(py/->jvm))))
(is (= (-> (get testcases "complex_fn(1, 2, 10, 11, 12, d=10, e=10)")
(py/->jvm))
(-> (apply py/afn testmod "complex_fn" [1 2 10 11 12 :d 10 :e 10])
(py/->jvm))))))