calendar/Tests/Fixtures/calendar_example/ext_localconf.php
Daniel Siepmann 77dd56ad43
Add functional tests (#7)
This replaces the existing unit tests for the controller.
Functional tests are way better suited for testing the controller.
2023-01-04 07:12:17 +00:00

19 lines
466 B
PHP

<?php
(function () {
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Calendar',
'Example',
[
\WerkraumMedia\Calendar\Controller\Frontend\CalendarController::class => implode(',', [
'day',
'week',
'month',
'year',
]),
],
[],
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::PLUGIN_TYPE_CONTENT_ELEMENT
);
})();