1 2 3 4 5 6 7 8 9 10
<?php $lib = 'Test-More.php'; require_once($lib); $t = new TestMore(); $t->plan(1); $t->is( $t->interp(),'php',"interp defaults to php"); ?>