8
0

removeoperation.js 483 B

1234567891011121314151617181920
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* bender-tags: document */
  6. 'use strict';
  7. describe( 'RemoveOperation', function() {
  8. it( 'should remove node' );
  9. it( 'should remove set of nodes' );
  10. it( 'should create a insert operation as a reverse' );
  11. it( 'should undo remove node by applying reverse operation' );
  12. it( 'should undo remove set of nodes by applying reverse operation' );
  13. } );