about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
authorAlan Pearce2014-10-19 10:06:28 +0100
committerAlan Pearce2014-10-19 10:06:28 +0100
commit8899c5515aa3cad313250c82cacc895f8cd89e2f (patch)
tree40252091923b602a1cc3974c6ed38105feb18181 /test
parentdc1b88d86c0feffd15489a3f51681a9942d107c0 (diff)
downloadmicroformats-8899c5515aa3cad313250c82cacc895f8cd89e2f.tar.lz
microformats-8899c5515aa3cad313250c82cacc895f8cd89e2f.tar.zst
microformats-8899c5515aa3cad313250c82cacc895f8cd89e2f.zip
Fix multi-parsing issue
Breaks base-url handling, but I'll have to do that better anyway
Diffstat (limited to 'test')
-rw-r--r--test/microformats/parser_expectations.clj12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/microformats/parser_expectations.clj b/test/microformats/parser_expectations.clj
index a60883d..f8c7bfb 100644
--- a/test/microformats/parser_expectations.clj
+++ b/test/microformats/parser_expectations.clj
@@ -304,3 +304,15 @@
         (parse "<html><head><base href=\"http://example.com/\"></head><body>
 <div class=\"h-card\"><img class=\"u-photo\" alt=\"Example User\" src=\"me.png\"></div>
 </body></html>"))
+
+(expect {:items '({:type ("h-card"),
+                   :properties {:photo ("http://blog.mozilla.org/press/files/2012/04/mitchell-baker.jpg"),
+                                :url ("http://blog.lizardwrangler.com/" "https://twitter.com/MitchellBaker"),
+                                :name ("Mitchell Baker"),
+                                }})
+                 :rels {}}
+        (parse "<div class=\"h-card\">
+        <img class=\"u-photo\" src=\"http://blog.mozilla.org/press/files/2012/04/mitchell-baker.jpg\"/>
+        <a class=\"p-name u-url\" href=\"http://blog.lizardwrangler.com/\">Mitchell Baker</a>
+        <a class=\"u-url\" href=\"https://twitter.com/MitchellBaker\">MitchellBaker</a>
+        </div>"))