Fixed registration issues

This commit is contained in:
Polonkai Gergely
2012-07-07 22:15:36 +02:00
parent c605fc2075
commit 13d03100e4
15 changed files with 138 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace KekRozsak\AdminBundle\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class DefaultControllerTest extends WebTestCase
{
public function testIndex()
{
$client = static::createClient();
$crawler = $client->request('GET', '/hello/Fabien');
$this->assertTrue($crawler->filter('html:contains("Hello Fabien")')->count() > 0);
}
}