You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
910 B
46 lines
910 B
<?php |
|
|
|
namespace Drupal\Tests\islandora_fits\Functional; |
|
|
|
use Drupal\Core\Url; |
|
use Drupal\Tests\BrowserTestBase; |
|
|
|
/** |
|
* Simple test to ensure that main page loads with module enabled. |
|
* |
|
* @group islandora_fits |
|
*/ |
|
class LoadTest extends BrowserTestBase { |
|
|
|
/** |
|
* Modules to enable. |
|
* |
|
* @var array |
|
*/ |
|
public static $modules = ['islandora_fits']; |
|
|
|
/** |
|
* 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->assertSession()->statusCodeEquals(200); |
|
} |
|
|
|
}
|
|
|