function HelpTopicDiscoveryTest::testHelpTopicsExtensionProviderSpecialCase
Same name in other branches
- 9 core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testHelpTopicsExtensionProviderSpecialCase()
- 8.9.x core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testHelpTopicsExtensionProviderSpecialCase()
- 10 core/modules/help/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help\Unit\HelpTopicDiscoveryTest::testHelpTopicsExtensionProviderSpecialCase()
@covers ::findAll
File
-
core/
modules/ help/ tests/ src/ Unit/ HelpTopicDiscoveryTest.php, line 131
Class
- HelpTopicDiscoveryTest
- @coversDefaultClass \Drupal\help\HelpTopicDiscovery @group help
Namespace
Drupal\Tests\help\UnitCode
public function testHelpTopicsExtensionProviderSpecialCase() : void {
vfsStream::setup('root');
$topic_content = <<<EOF
---
label: Test
---
<h2>Test</h2>
EOF;
vfsStream::create([
'modules' => [
'help' => [
'help_topics' => [
'core.topic.html.twig' => $topic_content,
],
],
],
]);
$discovery = new HelpTopicDiscovery([
'help' => vfsStream::url('root/modules/help/help_topics'),
]);
$this->assertArrayHasKey('core.topic', $discovery->getDefinitions());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.