Newer
Older
FirstLaravel / tests / Feature / ExampleTest.php
@motoki miura motoki miura on 18 Nov 129 bytes first commit
<?php

it('returns a successful response', function () {
    $response = $this->get('/');

    $response->assertStatus(200);
});