Product: Fedora
https://bugzilla.redhat.com/show_bug.cgi?id=880882

--- Comment #2 from Remi Collet <[email protected]> ---
You can simply run the tests using a trivial PSR0 autoload.php

<?php
spl_autoload_register(function ($class) {
    $src = str_replace('\\', '/', $class).'.php';
    require_once $src;
});


And 
phpunit --bootstrap=autoload.php -d include_path="../src/:.:/usr/share/pear" .

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to