2022-07-29 20:15:17 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Dependencies
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(require 'maybe)
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; Tests
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
|
|
(ert-deftest maybe-nil? ()
|
2022-07-30 16:16:08 +02:00
|
|
|
(should (maybe-nil? nil))
|
|
|
|
(should (not (maybe-nil? t))))
|
2022-07-29 20:15:17 +02:00
|
|
|
|
|
|
|
(ert-deftest maybe-some? ()
|
2022-07-30 16:16:08 +02:00
|
|
|
(should (maybe-some? '(1 2 3)))
|
|
|
|
(should (not (maybe-some? nil))))
|
2022-07-29 20:15:17 +02:00
|
|
|
|
|
|
|
(ert-deftest maybe-default ()
|
2022-07-30 16:16:08 +02:00
|
|
|
(should (string= "some" (maybe-default "some" nil)))
|
|
|
|
(should (= 10 (maybe-default 1 10))))
|
2022-07-29 20:15:17 +02:00
|
|
|
|
|
|
|
(ert-deftest maybe-map ()
|
2022-07-30 16:16:08 +02:00
|
|
|
(should (eq nil (maybe-map (lambda (x) (* x 2)) nil)))
|
|
|
|
(should (= 4 (maybe-map (lambda (x) (* x 2)) 2))))
|