Created
July 23, 2014 19:12
-
-
Save antonioribeiro/e12fdf54bab87243128a to your computer and use it in GitHub Desktop.
boot laravel on codeception _bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| include __DIR__ . '/../vendor/autoload.php'; | |
| $app = require_once __DIR__ . '/../bootstrap/start.php'; | |
| $app->boot(); | |
| \Codeception\Util\Autoload::registerSuffix('Page', __DIR__.DIRECTORY_SEPARATOR.'_pages'); | |
| \Codeception\Util\Autoload::registerSuffix('Steps', __DIR__.DIRECTORY_SEPARATOR.'_steps'); | |
| ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment