removed application and resolver classes. added phpunit tests.
This commit is contained in:
34
tests/bootstrap.php
Normal file
34
tests/bootstrap.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
/**
|
||||
* Laravel - A clean and classy framework for PHP web development.
|
||||
*
|
||||
* @package Laravel
|
||||
* @version 2.0.0
|
||||
* @author Taylor Otwell <taylorotwell@gmail.com>
|
||||
* @link http://laravel.com
|
||||
*/
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Installation Paths
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Here you may specify the location of the various Laravel framework
|
||||
| directories for your installation.
|
||||
|
|
||||
| Of course, these are already set to the proper default values, so you do
|
||||
| not need to change them if you have not modified the directory structure.
|
||||
|
|
||||
*/
|
||||
|
||||
$application = 'application';
|
||||
|
||||
$laravel = 'laravel';
|
||||
|
||||
$packages = 'packages';
|
||||
|
||||
$storage = 'storage';
|
||||
|
||||
$public = 'public';
|
||||
|
||||
require realpath($laravel).'/bootstrap.php';
|
||||
Reference in New Issue
Block a user