Add the new `BlogPageTest` functional test to ensure that anonymous users can access the `/blog` page. This fails, and returns a 404 response code rather than the expected 200 response code.
25 lines
502 B
PHP
25 lines
502 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 = [
|
|
'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);
|
|
}
|
|
|
|
}
|