Files
spa-api/tests/TestCase.php

16 lines
258 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase {
2013-02-22 16:47:09 -05:00
/**
2013-02-22 14:49:15 -05:00
* Creates the application.
*
* @return \Illuminate\Foundation\Application
2013-02-22 14:49:15 -05:00
*/
public function createApplication()
{
return require __DIR__.'/../bootstrap/app.php';
2013-02-22 14:49:15 -05:00
}
2013-01-11 15:14:07 -06:00
}