Enable the node module within the test to add the `access content` permission. This fails, and returns a 500 response code rather than the expected 200 response code.
26 lines
514 B
PHP
26 lines
514 B
PHP
<?php
|
|
|
|
namespace Drupal\my_module\Functional;
|
|
|
|
use Drupal\Tests\BrowserTestBase;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
|
|
class BlogPageTest extends BrowserTestBase {
|
|
|
|
protected $defaultTheme = 'stark';
|
|
|
|
protected static $modules = [
|
|
'node',
|
|
'my_module',
|
|
];
|
|
|
|
/** @test */
|
|
public function the_blog_page_loads_for_anonymous_users_and_contains_the_right_text() {
|
|
$this->drupalGet('blog');
|
|
|
|
$session = $this->assertSession();
|
|
|
|
$session->statusCodeEquals(Response::HTTP_OK);
|
|
}
|
|
|
|
}
|