218c1240b8
Fixes #35876. git-svn-id: https://develop.svn.wordpress.org/trunk@36589 602fd350-edb4-49c9-b593-d223f7449a82
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
ModuleLoader.require(["tinymce/util/Tools"], function(Tools) {
|
|
module("tinymce.util.Tools");
|
|
|
|
test('extend', function() {
|
|
deepEqual({a: 1, b: 2, c: 3}, Tools.extend({a: 1}, {b: 2}, {c: 3}));
|
|
deepEqual({a: 1, c: 3}, Tools.extend({a: 1}, null, {c: 3}));
|
|
});
|
|
});
|