update v1.0.7.7

This commit is contained in:
Sujit Prasad
2016-06-21 18:45:34 +05:30
parent 73f6c8d6e7
commit 48ed88a15e
444 changed files with 1581 additions and 37943 deletions

View File

@@ -1,12 +0,0 @@
<?php
// since Mocks can't be called from within test files, we need to do
// a little jumping through hoops to generate them
function generate_mock_once($name)
{
$mock_name = $name . 'Mock';
if (class_exists($mock_name, false)) return false;
Mock::generate($name, $mock_name);
}
// vim: et sw=4 sts=4