15 lines
269 B
PHP
15 lines
269 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
class LicensesTest extends PHPUnit_Framework_TestCase {
|
||
|
|
|
||
|
|
function testLicenses() {
|
||
|
|
$str = "
|
||
|
|
* Free licenses:
|
||
|
|
** GFDL|Debian disagrees
|
||
|
|
";
|
||
|
|
|
||
|
|
$lc = new Licenses( array( 'licenses' => $str ) );
|
||
|
|
$this->assertThat( $lc, $this->isInstanceOf( 'Licenses' ) );
|
||
|
|
}
|
||
|
|
}
|