diff options
author | Alan Pearce | 2014-09-24 13:30:11 +0100 |
---|---|---|
committer | Alan Pearce | 2014-09-24 13:30:11 +0100 |
commit | 2b01c9e53ded6e44d75b45fe955f00b79f3ef75e (patch) | |
tree | 090f27fbbbbae5e78ff10119a79d7be4951069dd /test | |
parent | cdf600e89d0008ea42eaa60cc7b3abf0a18acff2 (diff) | |
download | microformats-2b01c9e53ded6e44d75b45fe955f00b79f3ef75e.tar.lz microformats-2b01c9e53ded6e44d75b45fe955f00b79f3ef75e.tar.zst microformats-2b01c9e53ded6e44d75b45fe955f00b79f3ef75e.zip |
Parse child implied URLs
Diffstat (limited to 'test')
-rw-r--r-- | test/microformats/parser_expectations.clj | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/microformats/parser_expectations.clj b/test/microformats/parser_expectations.clj index 639c417..5c9984d 100644 --- a/test/microformats/parser_expectations.clj +++ b/test/microformats/parser_expectations.clj @@ -169,6 +169,10 @@ :photo '("http://example.com/me.png")}}] :rels {}} (parse "<div class=\"h-card\"><div><img alt=\"Example User\" src=\"http://example.com/me.png\"></div></div>")) +(expect {:items [{:type ["h-card"] :properties {:name '("Example User") :url '("http://example.com")}}] :rels {}} + (parse "<div class=\"h-card\"><a href=\"http://example.com\">Example User</a></div>")) + + (expect {:items [{:type ["h-adr"], :properties {:street-address '("665 3rd St."), |