From: Raphaƫl Gertz <git@rapsys.eu>
Date: Tue, 26 Nov 2019 16:08:21 +0000 (+0100)
Subject: Unit tests are for the weak :)
X-Git-Tag: 0.1.3~7
X-Git-Url: https://git.rapsys.eu/packbundle/commitdiff_plain/1a74147dd37fb7788cf615c0215027226aa7ac93?ds=inline

Unit tests are for the weak :)
---

diff --git a/Tests/Controller/DefaultControllerTest.php b/Tests/Controller/DefaultControllerTest.php
deleted file mode 100644
index 505db3d..0000000
--- a/Tests/Controller/DefaultControllerTest.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace Rapsys\PackBundle\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());
-    }
-}