ViewHomeTest.php 260 Bytes
<?php

namespace FootyRoom\Tests;

class ViewHomeTest extends TestCase
{
    use SetsUpFixtures;

    public function testGuestCanViewLoginPage()
    {
        $response = $this->call('GET', '/');
        $this->assertEquals(200, $response->status());
    }
}