aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/textmodes/reftex-tests.el15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/lisp/textmodes/reftex-tests.el b/test/lisp/textmodes/reftex-tests.el
index 962e39ff38e..a7af58f74c0 100644
--- a/test/lisp/textmodes/reftex-tests.el
+++ b/test/lisp/textmodes/reftex-tests.el
@@ -204,5 +204,20 @@
204 (should (string= (reftex-format-citation entry "%l:%A:%y:%t %j %P %a") 204 (should (string= (reftex-format-citation entry "%l:%A:%y:%t %j %P %a")
205 "Foo13:Jane Roe:2013:Some Article Some Journal 1 Jane Roe, John Doe \\& Jane Taxpayer")))) 205 "Foo13:Jane Roe:2013:Some Article Some Journal 1 Jane Roe, John Doe \\& Jane Taxpayer"))))
206 206
207
208;;; Autoload tests
209
210;; Test to check whether reftex autoloading mechanisms are working
211;; correctly.
212(ert-deftest reftex-autoload-auc ()
213 "Tests to see whether reftex-auc has been autoloaded"
214 (should
215 (fboundp 'reftex-arg-label))
216 (should
217 (autoloadp
218 (symbol-function
219 'reftex-arg-label))))
220
221
207(provide 'reftex-tests) 222(provide 'reftex-tests)
208;;; reftex-tests.el ends here. 223;;; reftex-tests.el ends here.