aboutsummaryrefslogtreecommitdiff
path: root/tests/Feature/ExampleTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Feature/ExampleTest.php')
-rw-r--r--tests/Feature/ExampleTest.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php
new file mode 100644
index 0000000..8b5843f
--- /dev/null
+++ b/tests/Feature/ExampleTest.php
@@ -0,0 +1,7 @@
+<?php
+
+it('returns a successful response', function () {
+ $response = $this->get('/');
+
+ $response->assertStatus(200);
+});