diff options
Diffstat (limited to 'test/lisp/international')
-rw-r--r-- | test/lisp/international/textsec-tests.el | 12 |
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 |