Module testing coverage 100%

This commit is contained in:
Joshua Sherman 2014-01-17 15:30:58 -05:00
parent 76d3c7cdc4
commit 9cc466bcd3
4 changed files with 129 additions and 71 deletions

View file

@ -1,6 +1,14 @@
<?php
set_exit_overload(function(){ return false; });
set_exit_overload(function($status = false)
{
if ($status)
{
echo $status;
}
return false;
});
ob_start();
@session_start();