Version 1
[yaffs-website] / vendor / drupal / console / templates / module / src / Tests / load-test.php.twig
diff --git a/vendor/drupal/console/templates/module/src/Tests/load-test.php.twig b/vendor/drupal/console/templates/module/src/Tests/load-test.php.twig
new file mode 100644 (file)
index 0000000..df13935
--- /dev/null
@@ -0,0 +1,54 @@
+{% extends "base/class.php.twig" %}
+
+{% block file_path %}
+\Drupal\{{ machine_name }}\Tests\LoadTest
+{% endblock %}
+
+{% block namespace_class %}
+namespace Drupal\{{ machine_name }}\Tests;
+{% endblock %}
+
+{% block use_class %}
+use Drupal\Core\Url;
+use Drupal\simpletest\WebTestBase;
+{% endblock %}
+
+{% block class_declaration %}
+/**
+ * Simple test to ensure that main page loads with module enabled.
+ *
+ * @group {{ machine_name }}
+ */
+class LoadTest extends WebTestBase{% endblock %}
+{% block class_methods %}
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = ['{{ machine_name }}'];
+
+  /**
+   * 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);
+  }
+{% endblock %}