Version 1
[yaffs-website] / web / modules / custom / yaffs_document / src / Tests / LoadTest.php
diff --git a/web/modules/custom/yaffs_document/src/Tests/LoadTest.php b/web/modules/custom/yaffs_document/src/Tests/LoadTest.php
new file mode 100644 (file)
index 0000000..8b75b3f
--- /dev/null
@@ -0,0 +1,46 @@
+<?php
+
+namespace Drupal\yaffs_document\Tests;
+
+use Drupal\Core\Url;
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group yaffs_document
+ */
+class LoadTest extends WebTestBase{
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = ['yaffs_document'];
+
+  /**
+   * 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);
+  }
+
+}