mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-19 13:25:53 +00:00
25 lines
502 B
JavaScript
25 lines
502 B
JavaScript
|
( function ( mw ) {
|
||
|
|
||
|
/**
|
||
|
* Creates a **minimal** stub that can be used in place of an `mw.User`
|
||
|
* instance.
|
||
|
*
|
||
|
* @param {boolean} isAnon The return value of the `#isAnon`.
|
||
|
* @return {Object}
|
||
|
*/
|
||
|
mw.popups.tests.stubs.createStubUser = function createStubUser( isAnon ) {
|
||
|
return {
|
||
|
isAnon: function () {
|
||
|
return isAnon;
|
||
|
},
|
||
|
sessionId: function () {
|
||
|
return '0123456789';
|
||
|
},
|
||
|
generateRandomSessionId: function () {
|
||
|
return '9876543210';
|
||
|
}
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}( mediaWiki ) );
|