summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/lisp/thingatpt-tests.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/lisp/thingatpt-tests.el b/test/lisp/thingatpt-tests.el
index b7c315062f9..c43c81af9fd 100644
--- a/test/lisp/thingatpt-tests.el
+++ b/test/lisp/thingatpt-tests.el
@@ -146,18 +146,4 @@ position to retrieve THING.")
(should (thing-at-point-looking-at "2abcd"))
(should (equal (match-data) m2)))))
-(ert-deftest test-narrow-buffer-symbol ()
- (with-temp-buffer
- (insert "foo bar zot")
- (goto-char 5)
- (should (equal (symbol-at-point) 'bar)))
- (with-temp-buffer
- (insert "`[[`(")
- (goto-char 2)
- (should (equal (symbol-at-point) nil)))
- (with-temp-buffer
- (insert "aa `[[`(")
- (goto-char 4)
- (should (equal (symbol-at-point) nil))))
-
;;; thingatpt.el ends here