Compare commits
5 Commits
4.0.x-robl
...
d10-dev
Author | SHA1 | Date |
---|---|---|
Paul Pound | 1f2401284a | 2 months ago |
Paul Pound | 32291d759c | 11 months ago |
Paul Pound | e011c7acf1 | 1 year ago |
Paul Pound | f949837ee1 | 1 year ago |
Paul Pound | 3faf3631c8 | 1 year ago |
13 changed files with 73 additions and 116 deletions
@ -1,46 +0,0 @@
|
||||
<?php |
||||
|
||||
namespace Drupal\reserve\Tests; |
||||
|
||||
use Drupal\Core\Url; |
||||
use Drupal\simpletest\WebTestBase; |
||||
|
||||
/** |
||||
* Simple test to ensure that main page loads with module enabled. |
||||
* |
||||
* @group reserve |
||||
*/ |
||||
class LoadTest extends WebTestBase{ |
||||
|
||||
/** |
||||
* Modules to enable. |
||||
* |
||||
* @var array |
||||
*/ |
||||
public static $modules = ['reserve']; |
||||
|
||||
/** |
||||
* A user with permission to administer site configuration. |
||||
* |
||||
* @var \Drupal\user\UserInterface |
||||
*/ |
||||
protected $user; |
||||
|
||||
/** |
||||
* {@inheritdoc} |
||||
*/ |
||||
protected function setUp() { |
||||
parent::setUp(); |
||||
$this->user = $this->drupalCreateUser(['administer site configuration']); |
||||
$this->drupalLogin($this->user); |
||||
} |
||||
|
||||
/** |
||||
* Tests that the home page loads with a 200 response. |
||||
*/ |
||||
public function testLoad() { |
||||
$this->drupalGet(Url::fromRoute('<front>')); |
||||
$this->assertResponse(200); |
||||
} |
||||
|
||||
} |
Loading…
Reference in new issue