| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* jshint expr: true */
- /* bender-tags: document */
- /* bender-include: ../_tools/tools.js */
- 'use strict';
- const getIteratorCount = bender.tools.core.getIteratorCount;
- const modules = bender.amd.require(
- 'document/document',
- 'document/element',
- 'document/rootelement'
- );
- describe( 'Element', () => {
- let Document, Element, RootElement;
- before( () => {
- Document = modules[ 'document/document' ];
- Element = modules[ 'document/element' ];
- RootElement = modules[ 'document/rootelement' ];
- } );
- describe( 'constructor', () => {
- it( 'should create root element without attributes', () => {
- let doc = new Document();
- let root = new RootElement( doc );
- expect( root ).to.be.an.instanceof( Element );
- expect( root ).to.have.property( 'document' ).that.equals( doc );
- expect( getIteratorCount( root.getAttrs() ) ).to.equal( 0 );
- expect( root.getChildCount() ).to.equal( 0 );
- } );
- } );
- } );
|