-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patharrows-tests.el
38 lines (34 loc) · 1.26 KB
/
arrows-tests.el
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
27
28
29
30
31
32
33
34
35
36
37
38
;;; Started out from
;;; https://github.com/nightfly19/cl-arrows/blob/master/test.lisp
(ert-deftest arrows--> ()
(should (= (-> 3.0 /) 0.3333333333333333))
(should (= (-> 3.0 (/)) 0.3333333333333333))
(should (= (-> 3.0 (/ 2)) 1.5))
(should (= (-> 3.0 (/ 2) /) 0.6666666666666666)))
(ert-deftest arrows-->> ()
(should (= (->> 3.0 /) 0.3333333333333333))
(should (= (->> 3.0 (/)) 0.3333333333333333))
(should (= (->> 3.0 (/ 2)) 0.6666666666666666))
(should (= (->> 3.0 (/ 2) /) 1.5)))
(ert-deftest arrows--<> ()
(should (= (-<> 3.0 /) 0.3333333333333333))
(should (= (-<> 3.0 (/)) 0.3333333333333333))
(should (= (-<> 3.0 (/ 2)) 1.5))
(should (= (-<> 3.0 (/ 2) /) 0.6666666666666666))
(should (= (let ((x 3))
(-<> (incf x)
(+ <> <>)))
8)))
(ert-deftest arrows--<>> ()
(should (= (-<>> 3.0 /) 0.3333333333333333))
(should (= (-<>> 3.0 (/)) 0.3333333333333333))
(should (= (-<>> 3.0 (/ 2)) 0.6666666666666666))
(should (= (-<>> 3.0 (/ 2) /) 1.5))
;; Because emacs lisp doesn't have fractions, this isn't useful.
;; Maybe use calc for fractions?
;; (should (= (-<>> (list 1 2 3)
;; (remove-if #'oddp <> :count 1 :from-end t)
;; (reduce #'+)
;; /)
;; 1/3)
)