mirror of
https://github.com/vale981/emacs-ipython-notebook
synced 2025-03-05 09:01:40 -05:00
8 lines
222 B
EmacsLisp
8 lines
222 B
EmacsLisp
(eval-when-compile (require 'cl))
|
|
(require 'ert)
|
|
|
|
(require 'ein-smartrep)
|
|
|
|
(ert-deftest ein:smartrep-notebook-mode-alist-fboundp ()
|
|
(loop for (k . f) in ein:smartrep-notebook-mode-alist
|
|
do (should (fboundp f))))
|