bobthecow / Ruler

A simple stateless production rules engine for modern PHP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unable to run unit tests w/ PHPUnit 3.5.15

wilmoore opened this issue · comments

phpunit --verbose

PHP Warning: require_once(/Projects/Ruler/tests/../vendor/pimple/lib/Pimple.php): failed to open stream: No such file or directory in /Projects/Ruler/tests/bootstrap.php on line 3

PHP Fatal error: require_once(): Failed opening required '/Projects/Ruler/tests/../vendor/pimple/lib/Pimple.php'


What PHPUnit version are you using?

If you are interested, I can upgrade the configuration to ensure it works with the 3.5.x version of PHPUnit.

Your issue is that you don't have Pimple in your vendor. You probably forgot to initialize the submodule.

Yup, that did it...I guess I forgot to notice the ".gitmodules" file sitting there :)

I like issues that sort themselves out this fast :)