Mercurial > hg > cmmr2012-drupal-site
view core/modules/path/src/Tests/PathTestBase.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children | 12f9dff5fda9 |
line wrap: on
line source
<?php namespace Drupal\path\Tests; use Drupal\simpletest\WebTestBase; /** * Provides a base class for testing the Path module. * * @deprecated Scheduled for removal in Drupal 9.0.0. * Use \Drupal\Tests\path\Functional\PathTestBase instead. */ abstract class PathTestBase extends WebTestBase { /** * Modules to enable. * * @var array */ public static $modules = ['node', 'path']; protected function setUp() { parent::setUp(); // Create Basic page and Article node types. if ($this->profile != 'standard') { $this->drupalCreateContentType(['type' => 'page', 'name' => 'Basic page']); $this->drupalCreateContentType(['type' => 'article', 'name' => 'Article']); } } }