Skip to content

Commit

Permalink
Merge pull request #402 from City-of-Helsinki/update-configuration
Browse files Browse the repository at this point in the history
Automatic update
  • Loading branch information
teroelonen authored Jun 28, 2023
2 parents 05ad063 + 1877e26 commit c732a83
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 50 deletions.
104 changes: 54 additions & 50 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions tests/dtt/src/ExistingSite/ModuleEnabledTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

declare(strict_types = 1);

namespace Drupal\Tests\dtt\ExistingSite;

use weitzman\DrupalTestTraits\ExistingSiteBase;

/**
* Tests if a specific module is enabled.
*
* @group dtt
*/
class ModuleEnabledTest extends ExistingSiteBase {

/**
* Check if dblog is enabled.
*/
public function testDbLogEnabled(): void {
// Assert that the dblog module is not enabled.
$this->assertFalse(\Drupal::moduleHandler()->moduleExists('dblog'));
}

}

0 comments on commit c732a83

Please sign in to comment.