mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 19:31:02 -08:00
Add ert-font-lock
Add ert-font-lock as well as unit tests and testing resources. * lisp/emacs-lisp/ert-font-lock.el: New library. * test/lisp/emacs-lisp/ert-font-lock-resources/broken.js: * test/lisp/emacs-lisp/ert-font-lock-resources/correct.js: * test/lisp/emacs-lisp/ert-font-lock-tests.el: Unit tests. (Bug#67460)
This commit is contained in:
parent
fb4b0b30a2
commit
c03d3fbf41
4 changed files with 834 additions and 0 deletions
3
test/lisp/emacs-lisp/ert-font-lock-resources/broken.js
Normal file
3
test/lisp/emacs-lisp/ert-font-lock-resources/broken.js
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
var abc = function(d) {
|
||||
// ^ wrong-face
|
||||
};
|
||||
3
test/lisp/emacs-lisp/ert-font-lock-resources/correct.js
Normal file
3
test/lisp/emacs-lisp/ert-font-lock-resources/correct.js
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
var abc = function(d) {
|
||||
// ^ font-lock-variable-name-face
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue