This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
drupalcampbristol/vendor/chi-teck/drupal-code-generator/templates/d8/test/web.twig

51 lines
1 KiB
Twig
Raw Normal View History

2018-11-23 12:29:20 +00:00
<?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');
}
}