6686c6d693
More fixes along the way Change-Id: I6b62eb0545981c2792d6c70089fe81324ba2dbf0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6010 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
25 lines
819 B
EmacsLisp
25 lines
819 B
EmacsLisp
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Dependencies
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(require 'maybe)
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
;; Tests
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
(ert-deftest maybe-nil? ()
|
|
(should (maybe-nil? nil))
|
|
(should (not (maybe-nil? t))))
|
|
|
|
(ert-deftest maybe-some? ()
|
|
(should (maybe-some? '(1 2 3)))
|
|
(should (not (maybe-some? nil))))
|
|
|
|
(ert-deftest maybe-default ()
|
|
(should (string= "some" (maybe-default "some" nil)))
|
|
(should (= 10 (maybe-default 1 10))))
|
|
|
|
(ert-deftest maybe-map ()
|
|
(should (eq nil (maybe-map (lambda (x) (* x 2)) nil)))
|
|
(should (= 4 (maybe-map (lambda (x) (* x 2)) 2))))
|