- Deleting UserTest in prep for writing tests

This commit is contained in:
Dave 2016-03-05 00:17:39 +00:00
parent 4598b8e8ed
commit 9167653114
2 changed files with 0 additions and 21 deletions

View File

@ -9,10 +9,7 @@ class ExampleTest extends TestCase {
*/
public function testBasicExample()
{
$response = $this->call('GET', '/');
$this->assertEquals(200, $response->getStatusCode());
$this->assertFalse(4);
}
}

View File

@ -1,18 +0,0 @@
<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class UserTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testExample()
{
$this->assertTrue(true);
}
}