summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-10-04 16:45:01 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-10-04 16:45:01 +0200
commit443582b2667e86ecac47de7bb77cbcc5bb354256 (patch)
treec9a1e6ab789d2166d22465fbd8bd93cfa34ed756 /tests
parentf1485bf9b53b30f609bf83b2fbd7bb577c204e59 (diff)
html: js and css work as media and as raw strings
Diffstat (limited to 'tests')
-rw-r--r--tests/html.scm11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/html.scm b/tests/html.scm
index c5a5967..ca041f4 100644
--- a/tests/html.scm
+++ b/tests/html.scm
@@ -13,9 +13,11 @@
#:description "Este es mi feed"
#:uri "https://feed.elenq.tech/index.html"
#:styles (list
- (html:css "this.css" #:uri "/this.css")
- (html:css "that.css" #:uri "/that.css"))
- #:scripts (list (html:js "script.js" #:uri "/script.js"))
+ "body {color: grey}"
+ (html:media "that.css" #:uri "/that.css"))
+ #:scripts (list
+ "console.log(\"HOLA\")"
+ (html:media "script.js" #:uri "/script.js"))
#:author me
#:posts (list
(html:post #:title "first entry"
@@ -29,7 +31,6 @@
(let ((html-index (with-output-to-string (lambda () (html:render index)))))
(test-assert (string=? html-index
- "<!DOCTYPE html><html><head><meta author=\"Ekaitz\" /><meta charset=\"utf-8\" /><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" /><meta name=\"description\" content=\"Este es mi feed\" /><link rel=\"stylesheet\" href=\"/this.css\" /><link rel=\"stylesheet\" href=\"/that.css\" /></head><body><article class=\"post\" id=\"first-entry\"><h2>first entry</h2><time datetime=\"2023-03-01T00:00:00+0100\" pubdate=\"#t\">2023-03-01T00:00:00+0100</time><address class=\"author\"><a rel=\"author\">Ekaitz</a></address><section class=\"summary\"><p>Este es el resumen</p></section><section class=\"content\"><p>Este es el contenido</p></section></article><script src=\"/script.js\" /></body></html>")))
-
+ "<!DOCTYPE html><html><head><meta author=\"Ekaitz\" /><meta charset=\"utf-8\" /><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" /><meta name=\"description\" content=\"Este es mi feed\" /><style>body {color: grey}</style><link rel=\"stylesheet\" href=\"/that.css\" /></head><body><article class=\"post\" id=\"first-entry\"><h2>first entry</h2><time datetime=\"2023-03-01T00:00:00+0100\" pubdate=\"#t\">2023-03-01T00:00:00+0100</time><address class=\"author\"><a rel=\"author\">Ekaitz</a></address><section class=\"summary\"><p>Este es el resumen</p></section><section class=\"content\"><p>Este es el contenido</p></section></article><script>console.log(\"HOLA\")</script><script src=\"/script.js\" /></body></html>")))
(test-end "HTML index page")