| 1234567891011121314151617181920 |
- /**
- * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* bender-tags: document */
- 'use strict';
- describe( 'RemoveOperation', function() {
- it( 'should remove node' );
- it( 'should remove set of nodes' );
- it( 'should create a insert operation as a reverse' );
- it( 'should undo remove node by applying reverse operation' );
- it( 'should undo remove set of nodes by applying reverse operation' );
- } );
|