Skip to content

Commit

Permalink
MDL-76583 core_external: Add new core_external subsystem
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Jan 17, 2023
1 parent 5dbac07 commit 4a27930
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions lib/components.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
"edufields": null,
"enrol": "enrol",
"error": null,
"external": "lib/external",
"favourites": "favourites",
"filepicker": null,
"fileconverter": "files\/converter",
Expand Down
2 changes: 1 addition & 1 deletion lib/tests/component_test.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class component_test extends advanced_testcase {
* this is defined here to annoy devs that try to add more without any thinking,
* always verify that it does not collide with any existing add-on modules and subplugins!!!
*/
const SUBSYSTEMCOUNT = 75;
const SUBSYSTEMCOUNT = 76;

public function setUp(): void {
$psr0namespaces = new ReflectionProperty('core_component', 'psr0namespaces');
Expand Down
6 changes: 3 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
<directory suffix="_test.php">lib/tests</directory>
<!-- <directory suffix="_test.php">lib/ajax/tests</directory> -->
</testsuite>
<testsuite name="core_external_testsuite">
<directory suffix="_test.php">lib/external/tests</directory>
</testsuite>
<testsuite name="core_favourites_testsuite">
<directory suffix="_test.php">favourites/tests</directory>
</testsuite>
Expand Down Expand Up @@ -127,9 +130,6 @@
<testsuite name="core_group_testsuite">
<directory suffix="_test.php">group/tests</directory>
</testsuite>
<testsuite name="core_external_testsuite">
<directory suffix="_test.php">lib/external/tests</directory>
</testsuite>
<testsuite name="core_message_testsuite">
<directory suffix="_test.php">message/tests</directory>
</testsuite>
Expand Down

0 comments on commit 4a27930

Please sign in to comment.