moveoperation.js 461 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( 'MoveOperation', function() {
  8. it( 'should move node' );
  9. it( 'should move set of nodes' );
  10. it( 'should create a move operation as a reverse' );
  11. it( 'should move node by applying reverse operation' );
  12. it( 'should move set of nodes by applying reverse operation' );
  13. } );