summaryrefslogtreecommitdiff
path: root/t/inc/Licenses.t
diff options
context:
space:
mode:
Diffstat (limited to 't/inc/Licenses.t')
-rw-r--r--t/inc/Licenses.t29
1 files changed, 29 insertions, 0 deletions
diff --git a/t/inc/Licenses.t b/t/inc/Licenses.t
new file mode 100644
index 00000000..86202bd6
--- /dev/null
+++ b/t/inc/Licenses.t
@@ -0,0 +1,29 @@
+#!/usr/bin/env php
+<?php
+require 'Test.php';
+
+plan(3);
+
+error_reporting( E_ALL );
+
+define( 'MEDIAWIKI', 1 ); // Hack
+
+require_ok( 'languages/Language.php' );
+require_ok( 'includes/GlobalFunctions.php' );
+require_ok( 'includes/Licenses.php' );
+
+$str = "
+* Free licenses:
+** GFLD|Debian disagrees
+";
+
+#$lc = new Licenses ( $str );
+
+#isa_ok( $lc, 'Licenses' );
+
+#echo $lc->html;
+
+
+
+
+?> \ No newline at end of file