mirror of
https://github.com/10h30/laravel-file-upload-series.git
synced 2026-06-05 15:08:44 +09:00
8 lines
147 B
PHP
8 lines
147 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
test('the application returns a successful response', function () {
|
||
|
|
$response = $this->get('/');
|
||
|
|
|
||
|
|
$response->assertStatus(200);
|
||
|
|
});
|