summaryrefslogtreecommitdiff
path: root/test/lisp/international
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2022-01-17 16:24:17 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2022-01-17 16:24:17 +0100
commita1ffee1e82b7152772da86a3adc7513128ffefdf (patch)
tree4b708c7f244a2944b58ffd482b748f12ff3b3253 /test/lisp/international
parent523a96a99ed7fe21c945b8e1cd0e3a2bc76c4ba0 (diff)
downloademacs-a1ffee1e82b7152772da86a3adc7513128ffefdf.tar.gz
emacs-a1ffee1e82b7152772da86a3adc7513128ffefdf.tar.bz2
emacs-a1ffee1e82b7152772da86a3adc7513128ffefdf.zip
Add textsec-restriction-level function
* lisp/international/textsec.el (textsec-restriction-level): New function.
Diffstat (limited to 'test/lisp/international')
-rw-r--r--test/lisp/international/textsec-tests.el12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/lisp/international/textsec-tests.el b/test/lisp/international/textsec-tests.el
index c80b2ba0fdf..7c56229e983 100644
--- a/test/lisp/international/textsec-tests.el
+++ b/test/lisp/international/textsec-tests.el
@@ -69,4 +69,16 @@
(should (equal (textsec-covering-scripts "〆切")
'(han))))
+(ert-deftest test-restriction-level ()
+ (should (eq (textsec-restriction-level "foo")
+ 'ascii-only))
+ (should (eq (textsec-restriction-level "C𝗂𝗋𝖼𝗅𝖾")
+ 'single-script))
+ (should (eq (textsec-restriction-level "切foo")
+ 'highly-restrictive))
+ (should (eq (textsec-restriction-level "հfoo")
+ 'moderately-retrictive))
+ (should (eq (textsec-restriction-level "Сirсlе")
+ 'unrestricted)))
+
;;; textsec-tests.el ends here