Move all files to test-driven-drupal/demo/drupalcamp-dublin-2017/

This commit is contained in:
Oliver Davies 2025-10-02 23:26:18 +01:00
parent bf1fce2a52
commit 593af57cea
8 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?php
namespace Drupal\Tests\tdd_blog\Functional;
use Drupal\Tests\BrowserTestBase;
use Symfony\Component\HttpFoundation\Response;
class PageListTest extends BrowserTestBase {
protected static $modules = ['tdd_blog'];
protected $defaultTheme = 'stark';
public function testBlogPageExists() {
$this->drupalGet('blog');
$this->assertSession()->statusCodeEquals(Response::HTTP_OK);
}
}