aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/WallabagGroupBundle/Controller/DefaultControllerTest.php
blob: f278827b67a4843b3340e7ca18f3f3f489bc00af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace Wallabag\GroupBundle\Tests\Controller;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class DefaultControllerTest extends WebTestCase
{
    public function testIndex()
    {
        $client = static::createClient();

        $crawler = $client->request('GET', '/');

        $this->assertContains('Hello World', $client->getResponse()->getContent());
    }
}