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.clj19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/microformats/parser_expectations.clj b/test/microformats/parser_expectations.clj
index 93a21b0..2fc8a19 100644
--- a/test/microformats/parser_expectations.clj
+++ b/test/microformats/parser_expectations.clj
@@ -129,3 +129,22 @@
 
 (expect {:items [{:type ["h-card"] :properties {:name '("Example User")}}] :rels {}}
         (parse "<p class=\"h-card\">Example User</p>"))
+
+(expect
+ {:items [{:type ["h-adr"],
+           :properties {:street-address '("665 3rd St."),
+                        :extended-address '("Suite 207"),
+                        :locality '("San Francisco"),
+                        :region '("CA"),
+                        :postal-code '("94107"),
+                        :country-name '("U.S.A."),
+                        :name '("665 3rd St. Suite 207 San Francisco, CA 94107 U.S.A.")}}]
+  :rels {}}
+ (parse "<p class=\"h-adr\">
+<span class=\"p-street-address\">665 3rd St.</span>
+<span class=\"p-extended-address\">Suite 207</span>
+<span class=\"p-locality\">San Francisco</span>,
+<span class=\"p-region\">CA</span>
+<span class=\"p-postal-code\">94107</span>
+<span class=\"p-country-name\">U.S.A.</span>
+</p>"))