wiki.techinc.nl/tests/phpunit/includes/LicensesTest.php

23 lines
506 B
PHP
Raw Normal View History

<?php
class LicensesTest extends PHPUnit_Framework_TestCase {
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' ) );
}
}