- expect(function() {
- elementNode.transform('testTransformation');
- }).to.throw(Error);
- expect(function() {
- textNode.transform('testTransformation');
- }).to.throw(Error);
- expect(function() {
- doc.transform('testTransformation');
- }).to.throw(Error);
- expect(doc.testMethod).to.be.undefined;
- expect(elementNode.testMethod).to.be.undefined;
- expect(textNode.testMethod).to.be.undefined;
-
- // spr+ a expect dotyczacy object api?
- });
-
- it('allows adding method to a document', function() {
- extension = {document: {methods: {
- testMethod: function() { return this; }
- }}};