File: citar-test.el

package info (click to toggle)
citar 1.4%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,084 kB
  • sloc: lisp: 3,169; makefile: 16; sh: 2
file content (16 lines) | stat: -rw-r--r-- 382 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; citar-file-test.el --- Tests for citar.el  -*- lexical-binding: t; -*-

;;; Commentary:

;;; Code:

(require 'ert)
(require 'citar)
(require 'map)

(ert-deftest citar-test--check-notes-sources ()
  ;; This should run without signalling an error
  (should-not (ignore (map-do #'citar--check-notes-source citar-notes-sources))))

(provide 'citar-test)
;;; citar-test.el ends here