diff options
Diffstat (limited to 'toolkit/components/microformats/test/standards-tests/mf-v2-h-adr-simpleproperties.js')
-rw-r--r-- | toolkit/components/microformats/test/standards-tests/mf-v2-h-adr-simpleproperties.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/toolkit/components/microformats/test/standards-tests/mf-v2-h-adr-simpleproperties.js b/toolkit/components/microformats/test/standards-tests/mf-v2-h-adr-simpleproperties.js deleted file mode 100644 index 084dac440..000000000 --- a/toolkit/components/microformats/test/standards-tests/mf-v2-h-adr-simpleproperties.js +++ /dev/null @@ -1,27 +0,0 @@ -/* -Microformats Test Suite - Downloaded from github repo: microformats/tests version v0.1.24 -Mocha integration test from: microformats-v2/h-adr/simpleproperties -The test was built on Fri Sep 25 2015 13:26:26 GMT+0100 (BST) -*/ - -assert = chai.assert; - - -describe('h-adr', function() { - var htmlFragment = "<p class=\"h-adr\">\n <span class=\"p-street-address\">665 3rd St.</span> \n <span class=\"p-extended-address\">Suite 207</span> \n <span class=\"p-locality\">San Francisco</span>, \n <span class=\"p-region\">CA</span> \n <span class=\"p-postal-code\">94107</span> \n <span class=\"p-country-name\">U.S.A.</span> \n</p>"; - var expected = {"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. \n Suite 207 \n San Francisco, \n CA \n 94107 \n U.S.A."]}}],"rels":{},"rel-urls":{}}; - - it('simpleproperties', function(){ - var doc, dom, node, options, parser, found; - dom = new DOMParser(); - doc = dom.parseFromString( htmlFragment, 'text/html' ); - options ={ - 'document': doc, - 'node': doc, - 'baseUrl': 'http://example.com', - 'dateFormat': 'html5' - }; - found = Microformats.get( options ); - assert.deepEqual(found, expected); - }); -}); |