presentations/tests/src/Functional/PageListTest.php

20 lines
346 B
PHP
Raw Normal View History

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'];
protected $defaultTheme = 'stark';
2018-09-07 18:33:14 +01:00
public function testBlogPageExists() {
$this->drupalGet('blog');
$this->assertSession()->statusCodeEquals(200);
}
}