Skip to content
Snippets Groups Projects
Commit b0c632e9 authored by Ted Bowman's avatar Ted Bowman
Browse files

Issue #3295013 by tedbow: Unhide Auto Updates Extensions

parent 62db8df6
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,6 @@ name: 'Automatic Updates Extensions'
type: module
description: 'Allows updates to themes and modules'
core_version_requirement: ^9.3
hidden: true
lifecycle: experimental
dependencies:
- drupal:automatic_updates
<?php
namespace Drupal\Tests\automatic_updates_extensions\Unit;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\Yaml\Yaml;
/**
* Test to ensure the module is hidden.
*
* @group automatic_updates_extensions
*/
class EnsureHiddenTest extends UnitTestCase {
/**
* Tests that module is hidden.
*/
public function testModuleIsHidden() {
$info = Yaml::parseFile(__DIR__ . '/../../../automatic_updates_extensions.info.yml');
$this->assertSame(TRUE, $info['hidden']);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment