diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:16:51 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:17:30 +0200 |
commit | c724b11f2a5a97bf08f5c90046c94d1508d82498 (patch) | |
tree | ec05e1f05bac743a7db3ac993200e4e6a2b7e092 /tests/atom.scm | |
parent | a1ed7b9f9954618e2ed4e14dd2dd3215ba7afd7d (diff) |
* tests/atom.scm: Fix quoting and dates.
* tests/html.scm: Fix dates.
Diffstat (limited to 'tests/atom.scm')
-rw-r--r-- | tests/atom.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/atom.scm b/tests/atom.scm index bdf78c6..ec213b7 100644 --- a/tests/atom.scm +++ b/tests/atom.scm @@ -25,6 +25,6 @@ (let ((atom-feed (with-output-to-string (lambda () (atom:render feed))))) (test-assert (string=? (pk atom-feed) - "<?xml version=\"1.0\" encoding=\"utf-8\"?><feed xmlns=\"http://www.w3.org/2005/Atom\"><id>https://feed.elenq.tech</id><title>Mi feed</title><link href=\"https://feed.elenq.tech\" rel=\"self\" /><updated>2023-03-01T00:00:00+0100</updated><subtitle>Este es mi feed</subtitle><entry><id>https://feed.elenq.tech/first-entry</id><title>first entry</title><published>2023-03-01T00:00:00+0100</published><updated>2023-03-01T00:00:00+0100</updated><author><name>Ekaitz</name><uri>https://elenq.tech</uri><email>ekaitz@elenq.tech</email></author><summary type=\"html\"><p>Este es el resumen</p></summary><content type=\"html\"><p>Este es el contenido</p></content><category term=\"una\" /><category term=\"dos\" /><category term=\"tres\" /></entry></feed>"))) + "<?xml version=\"1.0\" encoding=\"utf-8\"?><feed xmlns=\"http://www.w3.org/2005/Atom\"><id>https://feed.elenq.tech</id><title>Mi feed</title><link href=\"https://feed.elenq.tech\" rel=\"self\" /><updated>2023-03-01T00:00:00+01:00</updated><subtitle>Este es mi feed</subtitle><entry><id>https://feed.elenq.tech/first-entry</id><title>first entry</title><published>2023-03-01T00:00:00+01:00</published><updated>2023-03-01T00:00:00+01:00</updated><author><name>Ekaitz</name><uri>https://elenq.tech</uri><email>ekaitz@elenq.tech</email></author><summary type=\"html\"><p>Este es el resumen</p></summary><content type=\"html\"><p>Este es el contenido</p></content><category term=\"una\" /><category term=\"dos\" /><category term=\"tres\" /></entry></feed>"))) (test-end "Atom feed") |