X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/de48f6605b47f51523959d40cd6ba53e1b404b3f..b31ffcb46eae55b9c66457e2330b16e8db84f1d6:/src/wlxml/wlxml.test.js
diff --git a/src/wlxml/wlxml.test.js b/src/wlxml/wlxml.test.js
index bb5101f..9f846f6 100644
--- a/src/wlxml/wlxml.test.js
+++ b/src/wlxml/wlxml.test.js
@@ -6,7 +6,7 @@ define([
'use strict';
/* jshint expr:true */
-/* global it, describe */
+/* global it, describe, beforeEach */
var expect = chai.expect;
@@ -103,6 +103,8 @@ describe('WLXMLDocument', function() {
});
describe('White space handling', function() {
+ /* globals Node */
+
it('ignores white space surrounding block elements', function() {
var node = nodeFromXML(''),
contents = node.contents();
@@ -258,10 +260,11 @@ describe('WLXMLDocument', function() {
doc = getDocumentFromXML('');
elementNode = doc.root;
textNode = doc.root.contents()[0];
+ testClassNode = doc.root.contents('.test_class');
extension = {};
+ expect(testClassNode.object).to.be.undefined;
- // spr+ a expect dotyczacy object api?
});
it('allows adding method to an ElementNode of specific class', function() {
@@ -280,8 +283,8 @@ describe('WLXMLDocument', function() {
}}}};
doc.registerExtension(extension);
testClassNode = doc.root.contents()[1];
- expect(testClassNode.object.transform('testTransformation').sameNode(testClassNode)).to.equal(true, '1');
- expect(testClassNode.object.transform('testTransformation2').sameNode(testClassNode)).to.equal(true, '1');
+ expect(testClassNode.object.testTransformation().sameNode(testClassNode)).to.equal(true, '1');
+ expect(testClassNode.object.testTransformation2().sameNode(testClassNode)).to.equal(true, '1');
});