Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / test / web.twig
diff --git a/vendor/chi-teck/drupal-code-generator/templates/d8/test/web.twig b/vendor/chi-teck/drupal-code-generator/templates/d8/test/web.twig
new file mode 100644 (file)
index 0000000..a568c87
--- /dev/null
@@ -0,0 +1,50 @@
+<?php
+
+namespace Drupal\{{ machine_name }}\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Tests site configuration.
+ *
+ * @group {{ machine_name }}
+ */
+class {{ class }} extends WebTestBase {
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = [
+    'node',
+    'field',
+    'contact',
+    'views',
+    'taxonomy',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $user = $this->drupalCreateUser(['administer site configuration']);
+    $this->drupalLogin($user);
+  }
+
+  /**
+   * Test site information form.
+   */
+  public function testFieldStorageSettingsForm() {
+    $edit = [
+      'site_name' => 'Drupal',
+      'site_slogan' => 'Community plumbing',
+      'site_mail' => 'admin@example.local',
+      'site_frontpage' => '/user',
+    ];
+    $this->drupalPostForm('admin/config/system/site-information', $edit, t('Save configuration'));
+    $this->assertText(t('The configuration options have been saved.'), 'Configuration options have been saved');
+  }
+
+}