diff --git a/test/spec/format/xml.js b/test/spec/format/xml.js index 79b5f206b..bd5181495 100644 --- a/test/spec/format/xml.js +++ b/test/spec/format/xml.js @@ -1,4 +1,10 @@ describe('XML', function() { + describe('#decode', function() { + it('decodes xml', function() { + expect(iD.format.XML.decode('<">')).to.eql('<">'); + }); + }); + describe('#rep', function() { it('converts a node to jxon', function() { expect(iD.format.XML.rep({ id: 'n-1', type: 'node', lat: 38, lon: -77 }))