From: Raphaƫl Gertz <git@rapsys.eu>
Date: Wed, 27 Nov 2019 01:01:00 +0000 (+0100)
Subject: Unit test are for weak people :)
X-Git-Tag: 0.1.1~72
X-Git-Url: https://git.rapsys.eu/airbundle/commitdiff_plain/5199f3604eb51480a71b4d335b5459451bfc1b1a

Unit test are for weak people :)
---

diff --git a/Tests/Controller/DefaultControllerTest.php b/Tests/Controller/DefaultControllerTest.php
deleted file mode 100644
index fed9e42..0000000
--- a/Tests/Controller/DefaultControllerTest.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace Rapsys\AirBundle\Tests\Controller;
-
-use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
-
-class DefaultControllerTest extends WebTestCase
-{
-    public function testIndex()
-    {
-        $client = static::createClient();
-
-        $crawler = $client->request('GET', '/');
-
-        $this->assertContains('Hello World', $client->getResponse()->getContent());
-    }
-}