aboutsummaryrefslogtreecommitdiff
path: root/tests/Feature/ExampleTest.php
diff options
context:
space:
mode:
authorCalvin Morrison <calvin@fastmailteam.com>2022-08-02 11:30:56 -0400
committerCalvin Morrison <calvin@fastmailteam.com>2022-08-02 11:30:56 -0400
commit2466d29fe2319c1057cca7cf1e1977451088276e (patch)
tree23a9ada5dec1f8c8e106be100d3a0d75fcc0125e /tests/Feature/ExampleTest.php
initial commit of laravel
Diffstat (limited to 'tests/Feature/ExampleTest.php')
-rw-r--r--tests/Feature/ExampleTest.php21
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);
+ }
+}