mirror of
https://github.com/diocloid/LinkTitles.git
synced 2025-07-13 01:39:30 +02:00
22 lines
367 B
PHP
22 lines
367 B
PHP
<?php
|
|
/**
|
|
* @group bovender
|
|
*/
|
|
class DelimitersTest extends MediaWikiTestCase {
|
|
/**
|
|
* @dataProvider provideSplitData
|
|
*/
|
|
public function testSplit( $input, $output ) {
|
|
|
|
}
|
|
|
|
public static function provideSplitData() {
|
|
return [
|
|
[
|
|
'this may be linked [[this may not be linked]]',
|
|
[ 'this may be linked', '[[this may not be linked]]']
|
|
]
|
|
];
|
|
}
|
|
}
|