We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643e877 commit e54fd8cCopy full SHA for e54fd8c
tests/Controller/BlogControllerTest.php
@@ -31,12 +31,13 @@ public function testIndex()
31
$client = static::createClient();
32
$crawler = $client->request('GET', '/en/blog/');
33
34
+ $this->assertResponseIsSuccessful();
35
+
36
$this->assertCount(
37
Post::NUM_ITEMS,
38
$crawler->filter('article.post'),
39
'The homepage displays the right number of posts.'
40
);
- $this->assertResponseIsSuccessful();
41
}
42
43
public function testRss()
0 commit comments