X-Git-Url: https://code.delx.au/gnu-emacs-elpa/blobdiff_plain/f89ef19f5f80afb42ef8e24a0e2beaf6c7b4efeb..951b5e388108af26263a6ab6892391fea976a220:/packages/context-coloring/test/context-coloring-test.el diff --git a/packages/context-coloring/test/context-coloring-test.el b/packages/context-coloring/test/context-coloring-test.el index 702058924..39f2f801c 100644 --- a/packages/context-coloring/test/context-coloring-test.el +++ b/packages/context-coloring/test/context-coloring-test.el @@ -234,6 +234,10 @@ ARGS)." :extension "el" :enable-context-coloring-mode t) +(context-coloring-test-define-deftest eval-expression + :mode #'fundamental-mode + :no-fixture t) + (context-coloring-test-define-deftest define-theme :mode #'fundamental-mode :no-fixture t @@ -410,7 +414,7 @@ ARGS)." (lambda () (context-coloring-define-dispatch 'define-dispatch-no-modes)) - "No mode defined for dispatch") + "No mode or predicate defined for dispatch") (context-coloring-test-assert-error (lambda () (context-coloring-define-dispatch @@ -1268,6 +1272,24 @@ nnnnn n nnn nnnnnnnn"))) 1111 111 nnnn nn"))) +(context-coloring-test-deftest-eval-expression let + (lambda () + (minibuffer-with-setup-hook + (lambda () + ;; Perform the test in a hook as it's the only way I know of examining + ;; the minibuffer's contents. The contents are implicitly submitted, + ;; so we have to ignore the errors in the arbitrary test subject code. + (insert "(ignore-errors (let (a) (message a free)))") + (context-coloring-colorize) + (context-coloring-test-assert-coloring " +xxxx: 0000000-000000 1111 111 11111111 1 0000110")) + ;; Simulate user input because `call-interactively' is blocking and + ;; doesn't seem to run the hook. + (execute-kbd-macro + (vconcat + [?\C-u] ;; Don't output the result of the arbitrary test subject code. + [?\M-:]))))) + (provide 'context-coloring-test) ;;; context-coloring-test.el ends here