PHP Classes

File: public/js/tinymce/src/plugins/paste/src/test/js/browser/alien/DetectProPluginTest.js

Recommend this page to a friend!
  Classes of Abed Nego Ragil Putra   GoLavaCMS   public/js/tinymce/src/plugins/paste/src/test/js/browser/alien/DetectProPluginTest.js   Download  
File: public/js/tinymce/src/plugins/paste/src/test/js/browser/alien/DetectProPluginTest.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: GoLavaCMS
Publish content on Web pages with SEO support
Author: By
Last change:
Date: 6 years ago
Size: 1,652 bytes
 

Contents

Class file image Download
test( 'browser.tinymce.plugins.paste.alien.DetectProPluginTest', [ 'ephox.agar.api.Assertions', 'tinymce.core.Editor', 'tinymce.core.EditorManager', 'tinymce.core.PluginManager', 'tinymce.plugins.paste.alien.DetectProPlugin' ], function (Assertions, Editor, EditorManager, PluginManager, DetectProPlugin) { // Fake loading of powerpaste PluginManager.add('powerpaste', function () { }); Assertions.assertEq('Should not have pro plugin', false, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'paste' }, EditorManager))); Assertions.assertEq('Should not have pro plugin', false, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: '' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'powerpaste' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'paste powerpaste' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'powerpaste paste' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'paste powerpaste paste' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'paste,powerpaste,paste' }, EditorManager))); Assertions.assertEq('Should have pro plugin', true, DetectProPlugin.hasProPlugin(new Editor('id', { plugins: 'paste powerpaste paste' }, EditorManager))); } );