Merge "Tests: Extract createStubMap"

This commit is contained in:
jenkins-bot 2017-03-01 23:27:31 +00:00 committed by Gerrit Code Review
commit bba9e88fda
2 changed files with 21 additions and 9 deletions

View file

@ -1,13 +1,6 @@
var mw = mediaWiki,
createSchema = require( '../../src/schema' );
function createStubMap() {
var m = new Map(); /* global Map */
m.get = function ( key, def ) {
return Map.prototype.get.call( m, key ) || def;
};
return m;
}
createSchema = require( '../../src/schema' ),
createStubMap = require( './stubs' ).createStubMap;
QUnit.module( 'ext.popups/schema', {
setup: function () {

View file

@ -15,3 +15,22 @@ exports.createStubUser = function createStubUser( isAnon ) {
}
};
};
/**
* Creates a **minimal** stub that can be used in place of an `mw.Map`
* instance.
*
* @return {mw.Map}
*/
exports.createStubMap = function createStubMap() {
var m = new Map(); /* global Map */
m.get = function ( key, fallback ) {
fallback = arguments.length > 1 ? fallback : null;
if ( typeof key === 'string' ) {
return m.has( key ) ? Map.prototype.get.call( m, key ) : fallback;
}
// Invalid selection key
return null;
};
return m;
};