X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/6a770096a6f30ae819ec07c74e513770130f2721..422314851c0b7ce1f0a5209ca09960a47856d173:/src/smartxml/smartxml.test.js diff --git a/src/smartxml/smartxml.test.js b/src/smartxml/smartxml.test.js index c4f99e8..2198795 100644 --- a/src/smartxml/smartxml.test.js +++ b/src/smartxml/smartxml.test.js @@ -9,11 +9,63 @@ define([ var expect = chai.expect; -describe.only('Basic use', function() { - it('exposes root element', function() { - var doc = smartxml.fromXML('
'); - expect(doc.root.getTagName()).to.equal('div'); +var getDocumentFromXML = function(xml) { + return smartxml.documentFromXML(xml); +} + +var elementNodeFromParams = function(params) { + return smartxml.elementNodeFromXML('<' + params.tag + '>' + params.tag + '>'); +} + +var elementNodeFromXML = function(xml) { + return smartxml.elementNodeFromXML(xml); +} + + +describe.only('smartxml', function() { + + describe('Basic Document properties', function() { + it('exposes its root element', function() { + var doc = getDocumentFromXML(''); + expect(doc.root.getTagName()).to.equal('div'); + }); + }); + + describe('Basic ElementNode properties', function() { + it('exposes node contents', function() { + var node = elementNodeFromXML('