diff options
author | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
---|---|---|
committer | Calvin Morrison <calvin@fastmailteam.com> | 2022-08-02 11:30:56 -0400 |
commit | 2466d29fe2319c1057cca7cf1e1977451088276e (patch) | |
tree | 23a9ada5dec1f8c8e106be100d3a0d75fcc0125e /tests/Feature/ExampleTest.php |
initial commit of laravel
Diffstat (limited to 'tests/Feature/ExampleTest.php')
-rw-r--r-- | tests/Feature/ExampleTest.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php new file mode 100644 index 0000000..4ae02bc --- /dev/null +++ b/tests/Feature/ExampleTest.php @@ -0,0 +1,21 @@ +<?php + +namespace Tests\Feature; + +use Illuminate\Foundation\Testing\RefreshDatabase; +use Tests\TestCase; + +class ExampleTest extends TestCase +{ + /** + * A basic test example. + * + * @return void + */ + public function test_example() + { + $response = $this->get('/'); + + $response->assertStatus(200); + } +} |