c5357f89b83390385cbdb1b6ad0c7227e36b4563
[lhc/web/wiklou.git] / tests / LicensesTest.php
1 <?php
2
3 /**
4 * @group Broken
5 */
6 class LicensesTest extends PHPUnit_Framework_TestCase {
7
8 function testLicenses() {
9 $str = "
10 * Free licenses:
11 ** GFLD|Debian disagrees
12 ";
13
14 $lc = new Licenses( $str );
15 $this->assertTrue( is_a( $lc, 'Licenses' ), 'Correct class' );
16 }
17 }