Files
Phraseanet/tests/Alchemy/Tests/Phrasea/Controller/Prod/RootTest.php
Nicolas Le Goff ed4ae71819 Fix test suite
2014-02-19 17:29:25 +01:00

19 lines
432 B
PHP

<?php
namespace Alchemy\Tests\Phrasea\Controller\Prod;
class RootTest extends \PhraseanetAuthenticatedWebTestCase
{
/**
* Default route test
*/
public function testRouteSlash()
{
self::$DI['client']->request('GET', '/prod/');
$response = self::$DI['client']->getResponse();
$this->assertTrue($response->isOk());
$this->assertEquals('UTF-8', $response->getCharset());
}
}