New tests

This commit is contained in:
James Cole
2016-12-10 07:29:36 +01:00
parent e7845115f6
commit 0fe0de1a7f
17 changed files with 141 additions and 282 deletions

View File

@@ -31,7 +31,6 @@ class LoginControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Auth\LoginController::login
* Implement testLogin().
*/
public function testLogin()
{
@@ -45,7 +44,6 @@ class LoginControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Auth\LoginController::logout
* Implement testLogout().
*/
public function testLogout()
{
@@ -56,7 +54,6 @@ class LoginControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Auth\LoginController::showLoginForm
* Implement testShowLoginForm().
*/
public function testShowLoginForm()
{
@@ -64,12 +61,4 @@ class LoginControllerTest extends TestCase
->seePageIs('/login')
->see('Sign in to start your session');
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
}