view vendor/chi-teck/drupal-code-generator/templates/d8/test/web.twig @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
line wrap: on
line source
<?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');
  }

}