From d40897309869ae1aaa5c584bcb0eb8baea5f10a3 Mon Sep 17 00:00:00 2001
From: Sofiane Lasri-Trienpont <alasri250@gmail.com>
Date: Sun, 23 Feb 2025 15:51:09 +0100
Subject: [PATCH] feat: remove ExampleTest.php file

This commit deletes the ExampleTest.php file from the tests/Feature directory, which contained a basic test for the application.
---
 tests/Feature/ExampleTest.php | 21 ---------------------
 1 file changed, 21 deletions(-)
 delete mode 100644 tests/Feature/ExampleTest.php

diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php
deleted file mode 100644
index 22ef0c5..0000000
--- a/tests/Feature/ExampleTest.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-namespace Tests\Feature;
-
-use Illuminate\Foundation\Testing\RefreshDatabase;
-use Tests\TestCase;
-
-class ExampleTest extends TestCase
-{
-    use RefreshDatabase;
-
-    /**
-     * A basic test example.
-     */
-    public function test_the_application_returns_a_successful_response(): void
-    {
-        $response = $this->get('/');
-
-        $response->assertStatus(200);
-    }
-}
-- 
GitLab