mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 15:03:25 +00:00
19 lines
432 B
PHP
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());
|
|
}
|
|
}
|