8
0

rootattributedelta.js 403 B

123456789101112
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import RootAttributeDelta from '../../../src/model/delta/rootattributedelta';
  6. describe( 'RootAttributeDelta', () => {
  7. it( 'should provide proper className', () => {
  8. expect( RootAttributeDelta.className ).to.equal( 'engine.model.delta.RootAttributeDelta' );
  9. } );
  10. } );