Tests/Controller/DefaultControllerTest.php
author tcavalie
Wed, 19 Oct 2011 15:44:23 +0200
changeset 7 7a877de630fd
parent 1 06a22ff5d58d
permissions -rw-r--r--
add files to all tags list.

<?php

namespace IRI\Bundle\WikiTagBundle\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);
    }
}