Move all files to docs/

This commit is contained in:
Oliver Davies 2025-10-02 08:13:01 +01:00
parent 354fbe4128
commit 39acad502c
32 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,27 @@
<?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);
$session->responseContains('<h1>Blog</h1>');
}
}