markTestIncomplete('This test has not been implemented yet.'); } /** * @covers FireflyIII\Http\Controllers\HomeController::flush */ public function testFlush() { // Remove the following lines when you implement this test. $this->markTestIncomplete('This test has not been implemented yet.'); } /** * @covers FireflyIII\Http\Controllers\HomeController::index */ public function testIndexNoLogin() { $response = $this->call('GET', '/'); $this->assertRedirectedTo('auth/login'); } /** * @covers FireflyIII\Http\Controllers\HomeController::index */ public function testIndexLoggedIn() { $this->be(new FireflyIII\User); $response = $this->call('GET', '/'); $this->assertResponseOk(); } }