* Make a bunch of tests subclass MediaWikiTestCase * Parser tests and ResourceLoaderTest can't subclass it yet due to various issues
22 lines
497 B
PHP
22 lines
497 B
PHP
<?php
|
|
|
|
class LicensesTest extends MediaWikiTestCase {
|
|
|
|
function testLicenses() {
|
|
$str = "
|
|
* Free licenses:
|
|
** GFDL|Debian disagrees
|
|
";
|
|
|
|
$lc = new Licenses( array(
|
|
'fieldname' => 'FooField',
|
|
'type' => 'select',
|
|
'section' => 'description',
|
|
'id' => 'wpLicense',
|
|
'label' => 'A label text', # Note can't test label-message because $wgOut is not defined
|
|
'name' => 'AnotherName',
|
|
'licenses' => $str,
|
|
) );
|
|
$this->assertThat( $lc, $this->isInstanceOf( 'Licenses' ) );
|
|
}
|
|
}
|