* test/automated/files.el (files-test-disable-local-variables): New test.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2012-08-10 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* automated/files.el (files-test-disable-local-variables): New test.
|
||||
|
||||
2012-08-08 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* automated/files.el: New file.
|
||||
|
||||
@@ -38,4 +38,15 @@
|
||||
(hack-local-variables)
|
||||
(should (eq files-test-var1 nil)))))
|
||||
|
||||
(ert-deftest files-test-disable-local-variables ()
|
||||
"Test that setting enable-local-variables to nil works."
|
||||
(with-temp-buffer
|
||||
(insert "text\n"
|
||||
";; Local Variables:\n"
|
||||
";; files-test-var1: t\n"
|
||||
";; End:\n")
|
||||
(let ((enable-local-variables nil))
|
||||
(hack-local-variables)
|
||||
(should (eq files-test-var1 nil)))))
|
||||
|
||||
;;; files.el ends here
|
||||
|
||||
Reference in New Issue
Block a user