summaryrefslogtreecommitdiff
path: root/test/lisp/emacs-lisp/subr-x-tests.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2020-12-25 05:16:46 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2020-12-25 05:16:46 +0100
commit269cec13a2fc6ac18b675d0dadd07a3d4e074a72 (patch)
tree310349de42c6185770dcd30a5d343d01fd552237 /test/lisp/emacs-lisp/subr-x-tests.el
parentd63ccde966a561756675b9c84b39c724662c82a8 (diff)
downloademacs-269cec13a2fc6ac18b675d0dadd07a3d4e074a72.tar.gz
Remove `string-slice' -- it's not very well defined
* doc/lispref/strings.texi (Creating Strings): Ditto. * lisp/emacs-lisp/subr-x.el (string-slice): Remove.
Diffstat (limited to 'test/lisp/emacs-lisp/subr-x-tests.el')
-rw-r--r--test/lisp/emacs-lisp/subr-x-tests.el8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/lisp/emacs-lisp/subr-x-tests.el b/test/lisp/emacs-lisp/subr-x-tests.el
index 3fc5f1d3ed3..2ae492ecf15 100644
--- a/test/lisp/emacs-lisp/subr-x-tests.el
+++ b/test/lisp/emacs-lisp/subr-x-tests.el
@@ -604,14 +604,6 @@
(should (equal (string-lines "foo") '("foo")))
(should (equal (string-lines "foo \nbar") '("foo " "bar"))))
-(ert-deftest subr-string-slice ()
- (should (equal (string-slice "foo-bar" "-") '("foo" "-bar")))
- (should (equal (string-slice "foo-bar-" "-") '("foo" "-bar" "-")))
- (should (equal (string-slice "-foo-bar-" "-") '("-foo" "-bar" "-")))
- (should (equal (string-slice "ooo" "lala") '("ooo")))
- (should (equal (string-slice "foo bar" "\\b") '("foo" " " "bar" "")))
- (should (equal (string-slice "foo bar" "\\b\\|a") '("foo" " " "b" "ar" ""))))
-
(ert-deftest subr-string-pad ()
(should (equal (string-pad "foo" 5) "foo "))
(should (equal (string-pad "foo" 5 ?-) "foo--"))