File: use-package-tests.el

package info (click to toggle)
use-package 2.3%2Brepack-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 128 kB
  • ctags: 103
  • sloc: lisp: 889; makefile: 5
file content (52 lines) | stat: -rw-r--r-- 1,617 bytes parent folder | download
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; use-package-tests.el --- Tests for use-package.el

;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation; either version 2, or (at
;; your option) any later version.

;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Commentary:

;; 


;;; Code:

(require 'ert)
(require 'use-package)

(ert-deftest use-package-mplist-get ()
  (let ((mplist '(:foo bar baz bal :blob plap plup :blam))
        (tests '((:foo . (bar baz bal))
                 (:blob . (plap plup))
                 (:blam . t)
                 (:blow . nil))))
    (mapc (lambda (test)
            (should
             (equal
              (use-package-mplist-get mplist
                                      (car test))
              (cdr test))))
          tests)))

(ert-deftest use-package-mplist-keys ()
  (should (equal (use-package-mplist-keys
                  '(:foo bar baz bal :blob plap plup :blam))
                 '(:foo :blob :blam))))

;; Local Variables:
;; indent-tabs-mode: nil
;; no-byte-compile: t
;; no-update-autoloads: t
;; End:
;;; use-package-tests.el ends here