PATH:
home
/
centosnipponia
/
public_html
/
msg
/
tests
/
Feature
<?php namespace Tests\Feature; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; class RouteTest extends TestCase { /** * A basic test example. * * @return void */ public function testHomePage() { $response = $this->get('/'); $response->assertStatus(200); } /** * A basic test example. * * @return void */ public function testSignin() { $response = $this->get('/signin'); $response->assertStatus(302); } /** * A basic test example. * * @return void */ public function testCallback() { $response = $this->get('/callback'); $response->assertStatus(302); } /** * A basic test example. * * @return void */ public function testSignout() { $response = $this->get('/signout'); $response->assertStatus(302); } /** * A basic test example. * * @return void */ public function testCalendarNew() { $response = $this->get('/calendar/new'); $response->assertStatus(200); } /** * A basic test example. * * @return void */ public function testCalendarNewPost() { $response = $this->post('/calendar/new'); $response->assertStatus(302); } }
[+]
..
[-] RouteTest.php
[edit]
[-] .htaccess.disabled
[edit]