X-Git-Url: https://git.mdrn.pl/fnpeditor.git/blobdiff_plain/7a2014c27a040390c1c8e165f8cbd11f30b330fd..a4e2af35996896240356ad8ca4c7b6003d4b9ff3:/src/wlxml/wlxml.test.js?ds=sidebyside
diff --git a/src/wlxml/wlxml.test.js b/src/wlxml/wlxml.test.js
index 7d5e6d0..090cd56 100644
--- a/src/wlxml/wlxml.test.js
+++ b/src/wlxml/wlxml.test.js
@@ -24,6 +24,11 @@ describe('WLXMLDocument', function() {
var node = nodeFromXML('');
expect(node.getMetaAttributes()).to.eql({attr1: 'val1', attr2: 'val2'});
});
+
+ it('returns attributes other than class and meta-* as other attributes', function() {
+ var node = nodeFromXML('');
+ expect(node.getOtherAttributes()).to.eql({attr1: 'val1', attr2: 'val2'});
+ });
});
});