2018-09-07 18:33:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Drupal\Tests\tdd_blog\Functional;
|
|
|
|
|
|
|
|
use Drupal\Tests\BrowserTestBase;
|
|
|
|
|
|
|
|
class PageListTest extends BrowserTestBase {
|
|
|
|
|
|
|
|
protected static $modules = ['tdd_blog'];
|
|
|
|
|
2020-03-07 17:15:01 +00:00
|
|
|
protected $defaultTheme = 'stark';
|
|
|
|
|
2018-09-07 18:33:14 +01:00
|
|
|
public function testBlogPageExists() {
|
|
|
|
$this->drupalGet('blog');
|
|
|
|
|
|
|
|
$this->assertSession()->statusCodeEquals(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|