aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2019-08-25 14:05:05 -0700
committerGravatar Tom Willemse2019-08-25 14:05:05 -0700
commitb3123f8d11f68dbd27def9a87f60d56215995e38 (patch)
treee49227ccb74b6b648f4a215a75ef9c9b33a94a59
parent8b92d54bafa4d1dd4f3e355614164496500f3f5d (diff)
downloademacs-config-b3123f8d11f68dbd27def9a87f60d56215995e38.tar.gz
emacs-config-b3123f8d11f68dbd27def9a87f60d56215995e38.zip
Fix tests for ‘oni-elisp’
-rw-r--r--oni-elisp/oni-elisp.el3
-rw-r--r--test/oni-elisp-test.el5
2 files changed, 5 insertions, 3 deletions
diff --git a/oni-elisp/oni-elisp.el b/oni-elisp/oni-elisp.el
index 1ae19d3..864c6c3 100644
--- a/oni-elisp/oni-elisp.el
+++ b/oni-elisp/oni-elisp.el
@@ -4,7 +4,7 @@
;; Author: Tom Willemse <tom@ryuslash.org>
;; Keywords: local
-;; Version: 20190825132536
+;; Version: 20190825135738
;; Package-Requires: (oni-company oni-flycheck oni-paredit oni-fci oni-yasnippet rainbow-delimiters nameless erefactor)
;; This program is free software; you can redistribute it and/or modify
@@ -43,6 +43,7 @@
(expand-file-name "snippets" oni-elisp-root)
"The directory where ‘oni-elisp’ stores its snippets.")
+;;;###autoload
(defun oni-elisp-snippets-initialize ()
"Initialize the snippets for ‘oni-elisp’."
(when (boundp 'yas-snippet-dirs)
diff --git a/test/oni-elisp-test.el b/test/oni-elisp-test.el
index c1984aa..38e6be3 100644
--- a/test/oni-elisp-test.el
+++ b/test/oni-elisp-test.el
@@ -26,8 +26,9 @@
(ert-deftest oni-elisp-test-autoloads ()
"Test that ‘oni-elisp’ gets loaded automatically."
- (should (not (featurep 'oni-elisp)))
- (require 'elisp-mode)
+ ;; Since ‘emacs-lisp-mode’ is pre-loaded into Emacs, I can only check if it’s
+ ;; also been properly loaded. There is never a state where ‘emacs-lisp-mode’
+ ;; is not loaded in Emacs.
(should (featurep 'oni-elisp)))
(provide 'oni-elisp-test)