]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php
Jump to Symfony 3.1
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Tests / Twig / WallabagExtensionTest.php
diff --git a/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php b/src/Wallabag/CoreBundle/Tests/Twig/WallabagExtensionTest.php
deleted file mode 100644 (file)
index 9af8fad..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-
-namespace Wallabag\CoreBundle\Tests\Twig;
-
-use Wallabag\CoreBundle\Twig\WallabagExtension;
-
-class WallabagExtensionTest extends \PHPUnit_Framework_TestCase
-{
-    public function testRemoveWww()
-    {
-        $extension = new WallabagExtension();
-
-        $this->assertEquals('lemonde.fr', $extension->removeWww('www.lemonde.fr'));
-        $this->assertEquals('lemonde.fr', $extension->removeWww('lemonde.fr'));
-        $this->assertEquals('gist.github.com', $extension->removeWww('gist.github.com'));
-    }
-}