diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/automated/elisp-mode-tests.el | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/automated/elisp-mode-tests.el b/test/automated/elisp-mode-tests.el index 7af6dfcdc03..85f6da22441 100644 --- a/test/automated/elisp-mode-tests.el +++ b/test/automated/elisp-mode-tests.el | |||
| @@ -78,6 +78,15 @@ | |||
| 78 | (should (member "backup-buffer" comps)) | 78 | (should (member "backup-buffer" comps)) |
| 79 | (should-not (member "backup-inhibited" comps)))))) | 79 | (should-not (member "backup-inhibited" comps)))))) |
| 80 | 80 | ||
| 81 | (ert-deftest elisp-completes-functions-after-hash-quote () | ||
| 82 | (ert-deftest elisp-completes-functions-after-let-bindings () | ||
| 83 | (with-temp-buffer | ||
| 84 | (emacs-lisp-mode) | ||
| 85 | (insert "#'ba") | ||
| 86 | (let ((comps (elisp--test-completions))) | ||
| 87 | (should (member "backup-buffer" comps)) | ||
| 88 | (should-not (member "backup-inhibited" comps)))))) | ||
| 89 | |||
| 81 | (ert-deftest elisp-completes-local-variables () | 90 | (ert-deftest elisp-completes-local-variables () |
| 82 | (with-temp-buffer | 91 | (with-temp-buffer |
| 83 | (emacs-lisp-mode) | 92 | (emacs-lisp-mode) |