forked from wallabag/wallabag
rename test file
This commit is contained in:
@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Wallabag\CoreBundle\Tests\Controller;
|
||||
|
||||
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||||
|
||||
class EntryControllerTest extends WebTestCase
|
||||
{
|
||||
public function testIndex()
|
||||
{
|
||||
$client = static::createClient();
|
||||
|
||||
$crawler = $client->request('GET', '/app/index');
|
||||
|
||||
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
||||
$this->assertTrue($crawler->filter('html:contains("Homepage")')->count() > 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user