tvl-depot/users/wpcarro/emacs/pkgs/maybe/tests.el
William Carroll 6686c6d693 fix(wpcarro/emacs): Use should macro in maybe.el tests
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
2022-07-30 14:25:36 +00:00

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))))