about summary refs log tree commit diff stats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/microformats/parser_expectations.clj3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/microformats/parser_expectations.clj b/test/microformats/parser_expectations.clj
index 8948840..53f9ca5 100644
--- a/test/microformats/parser_expectations.clj
+++ b/test/microformats/parser_expectations.clj
@@ -115,3 +115,6 @@
 
 (expect {:items [{:properties {:name "Example User"} :type ["h-card"]}] :rels {}}
         (parse "<div class=\"h-card\"><p class=\"p-name\">Example User</p></div>"))
+
+(expect {:items [{:type ["h-card"] :properties {:name "Example User"}}] :rels {}}
+        (parse "<p class=\"h-card\">Example User</p>"))