Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!5026
Issue
#3096092
: Make "path_alias" module optional
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3096092
: Make "path_alias" module optional
issue/drupal-3096092:3096092-make-pathalias-module
into
11.x
Overview
9
Commits
21
Pipelines
16
Changes
24
Open
Michael Strelan
requested to merge
issue/drupal-3096092:3096092-make-pathalias-module
into
11.x
1 year ago
Overview
9
Commits
21
Pipelines
16
Changes
24
Expand
0
0
Merge request reports
Compare
11.x
version 15
1d6b9c7e
1 year ago
version 14
c2a3eaaf
1 year ago
version 13
a71464bc
1 year ago
version 12
e90aad32
1 year ago
version 11
b4a34189
1 year ago
version 10
c0f2d202
1 year ago
version 9
08ca0ded
1 year ago
version 8
ec64dba9
1 year ago
version 7
d9f9e3c7
1 year ago
version 6
77dbe358
1 year ago
version 5
73cf5118
1 year ago
version 4
96aa595e
1 year ago
version 3
e347e395
1 year ago
version 2
04091aac
1 year ago
version 1
769a71ec
1 year ago
11.x (base)
and
latest version
latest version
d21af30d
21 commits,
1 year ago
version 15
1d6b9c7e
20 commits,
1 year ago
version 14
c2a3eaaf
20 commits,
1 year ago
version 13
a71464bc
18 commits,
1 year ago
version 12
e90aad32
17 commits,
1 year ago
version 11
b4a34189
17 commits,
1 year ago
version 10
c0f2d202
17 commits,
1 year ago
version 9
08ca0ded
17 commits,
1 year ago
version 8
ec64dba9
17 commits,
1 year ago
version 7
d9f9e3c7
16 commits,
1 year ago
version 6
77dbe358
13 commits,
1 year ago
version 5
73cf5118
11 commits,
1 year ago
version 4
96aa595e
7 commits,
1 year ago
version 3
e347e395
4 commits,
1 year ago
version 2
04091aac
3 commits,
1 year ago
version 1
769a71ec
2 commits,
1 year ago
24 files
+
314
−
56
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
core/modules/config/tests/src/Functional/ConfigImportAllTest.php
+
1
−
1
Options
@@ -110,7 +110,7 @@ public function testInstallUninstall() {
$all_modules
=
\Drupal
::
service
(
'extension.list.module'
)
->
getList
();
$database_module
=
\Drupal
::
service
(
'database'
)
->
getProvider
();
$expected_modules
=
[
'path_alias'
,
'system'
,
'user'
,
$database_module
];
$expected_modules
=
[
'system'
,
'user'
,
$database_module
];
// Ensure that only core required modules and the install profile can not be uninstalled.
$validation_reasons
=
\Drupal
::
service
(
'module_installer'
)
->
validateUninstall
(
array_keys
(
$all_modules
));
Loading