mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-16 02:51:50 +00:00
e1fb20d8be
Change-Id: I635f72a62ae44943a7705d28e92c9a0d265800b6
30 lines
618 B
JavaScript
30 lines
618 B
JavaScript
{
|
|
|
|
QUnit.module( 've.dm.MWTransclusionContentModel' );
|
|
|
|
/**
|
|
* @return {ve.dm.MWTransclusionModel} but it's a mock
|
|
*/
|
|
const createTransclusionModel = function () {
|
|
return {
|
|
getUniquePartId: () => 0
|
|
};
|
|
};
|
|
|
|
[
|
|
[ undefined, false ],
|
|
[ null, false ],
|
|
[ '', false ],
|
|
[ ' ', true ],
|
|
[ '0', true ],
|
|
[ '\nfoo', true ]
|
|
].forEach( ( [ wikitext, expected ] ) =>
|
|
QUnit.test( 'containsValuableData: ' + wikitext, ( assert ) => {
|
|
const model = new ve.dm.MWTransclusionContentModel( createTransclusionModel(), wikitext );
|
|
|
|
assert.strictEqual( model.containsValuableData(), expected );
|
|
} )
|
|
);
|
|
|
|
}
|