diff options
author | Benjamin Riefenstahl <b.riefenstahl@turtle-trading.net> | 2021-08-09 14:14:33 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-08-09 14:14:37 +0200 |
commit | 2b6c5fb2953a9134064c32f67674ecd41db6c26a (patch) | |
tree | f245e3c1c4cf8144260d66b256808eb7efbac0c0 /test/lisp/gnus | |
parent | 4d95eca97ef026aae55d4eb3685cea0c8a94779b (diff) | |
download | emacs-2b6c5fb2953a9134064c32f67674ecd41db6c26a.tar.gz emacs-2b6c5fb2953a9134064c32f67674ecd41db6c26a.tar.bz2 emacs-2b6c5fb2953a9134064c32f67674ecd41db6c26a.zip |
Add test for nnrss
* test/lisp/gnus/nnrss-tests.el (test-nnrss-xml): New test (bug#34685).
Diffstat (limited to 'test/lisp/gnus')
-rw-r--r-- | test/lisp/gnus/nnrss-tests.el | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/lisp/gnus/nnrss-tests.el b/test/lisp/gnus/nnrss-tests.el index 9821ec76fb4..01b374a2f63 100644 --- a/test/lisp/gnus/nnrss-tests.el +++ b/test/lisp/gnus/nnrss-tests.el @@ -26,4 +26,20 @@ (should (equal (nnrss-normalize-date "2004-09-17T05:09:49.001+00:00") "Fri, 17 Sep 2004 05:09:49 +0000"))) +(defconst test-nnrss-xml + '(rss + ((version . "2.0") + (xmlns:dc . "http://purl.org/dc/elements/1.1/")) + (channel + ((xmlns:content . "http://purl.org/rss/1.0/modules/content/"))))) + +(ert-deftest test-nnrss-namespace-top () + (should (equal (nnrss-get-namespace-prefix + test-nnrss-xml "http://purl.org/dc/elements/1.1/") + "dc:"))) +(ert-deftest test-nnrss-namespace-inner () + (should (equal (nnrss-get-namespace-prefix + test-nnrss-xml "http://purl.org/rss/1.0/modules/content/") + "content:"))) + ;;; nnrss-tests.el ends here |