move to CL => Chill namespace

This commit is contained in:
2014-10-29 21:29:00 +01:00
parent 26a0b1e056
commit 103f5c414e
91 changed files with 364 additions and 364 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace Chill\CustomFieldsBundle\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);
}
}