wallabag/tests/Wallabag/CoreBundle/Twig/WallabagExtensionTest.php

18 lines
516 B
PHP
Raw Normal View History

2015-10-06 04:34:11 +00:00
<?php
2016-06-01 19:27:35 +00:00
namespace Tests\Wallabag\CoreBundle\Twig;
2015-10-06 04:34:11 +00:00
use Wallabag\CoreBundle\Twig\WallabagExtension;
class WallabagExtensionTest extends \PHPUnit_Framework_TestCase
{
public function testRemoveWww()
{
$extension = new WallabagExtension();
2015-10-06 18:51:40 +00:00
$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'));
2015-10-06 04:34:11 +00:00
}
}