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

Issue #3275357 by tedbow: AU Extensions module became unhidden

parent f80339a0
No related branches found
No related tags found
1 merge request!277Issue #3275357: AU Extensions module became unhidden
...@@ -2,5 +2,6 @@ name: 'Automatic Updates Extensions' ...@@ -2,5 +2,6 @@ name: 'Automatic Updates Extensions'
type: module type: module
description: 'Allows updates to themes and modules' description: 'Allows updates to themes and modules'
core_version_requirement: ^9.2 core_version_requirement: ^9.2
hidden: true
dependencies: dependencies:
- drupal:automatic_updates - 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