GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /nginx/html/Student/JimMartinson/Lab12/drupal/core/modules/help/tests/src/Functional/ |
Upload File : |
<?php namespace Drupal\Tests\help\Functional; use Drupal\Tests\BrowserTestBase; /** * Verify no help is displayed for modules not providing any help. * * @group help */ class NoHelpTest extends BrowserTestBase { /** * Modules to enable. * * Use one of the test modules that do not implement hook_help(). * * @var array. */ public static $modules = ['help', 'menu_test']; /** * The user who will be created. */ protected $adminUser; protected function setUp() { parent::setUp(); $this->adminUser = $this->drupalCreateUser(['access administration pages']); } /** * Ensures modules not implementing help do not appear on admin/help. */ public function testMainPageNoHelp() { $this->drupalLogin($this->adminUser); $this->drupalGet('admin/help'); $this->assertResponse(200); $this->assertText('Module overviews are provided by modules'); $this->assertFalse(\Drupal::moduleHandler()->implementsHook('menu_test', 'help'), 'The menu_test module does not implement hook_help'); $this->assertNoText(\Drupal::moduleHandler()->getName('menu_test'), 'Making sure the test module menu_test does not display a help link on admin/help.'); $this->drupalGet('admin/help/menu_test'); $this->assertResponse(404, 'Getting a module overview help page for a module that does not implement hook_help() results in a 404.'); } }