]>
Commit | Line | Data |
---|---|---|
784bb4c3 NL |
1 | <?php |
2 | ||
23634d5d | 3 | namespace Tests\Wallabag\CoreBundle\Twig; |
784bb4c3 NL |
4 | |
5 | use Wallabag\CoreBundle\Twig\WallabagExtension; | |
6 | ||
7 | class WallabagExtensionTest extends \PHPUnit_Framework_TestCase | |
8 | { | |
9 | public function testRemoveWww() | |
10 | { | |
11 | $extension = new WallabagExtension(); | |
12 | ||
ce782c84 NL |
13 | $this->assertEquals('lemonde.fr', $extension->removeWww('www.lemonde.fr')); |
14 | $this->assertEquals('lemonde.fr', $extension->removeWww('lemonde.fr')); | |
15 | $this->assertEquals('gist.github.com', $extension->removeWww('gist.github.com')); | |
784bb4c3 NL |
16 | } |
17 | } |