Allow 'browse-url-emacs' to fetch URL in the selected window
[emacs.git] / test / lisp / net / puny-tests.el
blob41eacff1c8d2a9a38c5a1c625681858dc10e5068
1 ;;; puny-tests.el --- tests for net/puny.el -*- coding: utf-8; -*-
3 ;; Copyright (C) 2017-2018 Free Software Foundation, Inc.
5 ;; This file is part of GNU Emacs.
7 ;; GNU Emacs is free software: you can redistribute it and/or modify
8 ;; it under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
12 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;; GNU General Public License for more details.
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
20 ;;; Code:
22 (require 'ert)
23 (require 'puny)
25 (ert-deftest puny-test-encode ()
26 "Test puny encoding."
27 (should (string= (puny-encode-string "bücher") "xn--bcher-kva")))
29 (ert-deftest puny-test-decode ()
30 "Test puny decoding."
31 (should (string= (puny-decode-string "xn--bcher-kva") "bücher")))
33 (ert-deftest puny-test-encode2 ()
34 "Test puny encoding."
35 (should (string= (puny-encode-string "חנוך") "xn--9dbdkw")))
37 (ert-deftest puny-test-decode2 ()
38 "Test puny decoding."
39 (should (string= (puny-decode-string "xn--9dbdkw") "חנוך")))
41 ;;; puny-tests.el ends here