@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove PhabricatorSearchEngineTestCase

Summary:
Ref T12450. This is now pointless and just asserts that `cluster.search` has a default value.

We might restore a fancier version of this eventually, but get rid of this for now.

Test Plan: Scruitinized the test case.

Reviewers: chad, 20after4

Reviewed By: 20after4

Maniphest Tasks: T12450

Differential Revision: https://secure.phabricator.com/D17573

-12
-2
src/__phutil_library_map__.php
··· 3790 3790 'PhabricatorSearchEngineAttachment' => 'applications/search/engineextension/PhabricatorSearchEngineAttachment.php', 3791 3791 'PhabricatorSearchEngineExtension' => 'applications/search/engineextension/PhabricatorSearchEngineExtension.php', 3792 3792 'PhabricatorSearchEngineExtensionModule' => 'applications/search/engineextension/PhabricatorSearchEngineExtensionModule.php', 3793 - 'PhabricatorSearchEngineTestCase' => 'applications/search/engine/__tests__/PhabricatorSearchEngineTestCase.php', 3794 3793 'PhabricatorSearchField' => 'applications/search/field/PhabricatorSearchField.php', 3795 3794 'PhabricatorSearchHost' => 'infrastructure/cluster/search/PhabricatorSearchHost.php', 3796 3795 'PhabricatorSearchHovercardController' => 'applications/search/controller/PhabricatorSearchHovercardController.php', ··· 9111 9110 'PhabricatorSearchEngineAttachment' => 'Phobject', 9112 9111 'PhabricatorSearchEngineExtension' => 'Phobject', 9113 9112 'PhabricatorSearchEngineExtensionModule' => 'PhabricatorConfigModule', 9114 - 'PhabricatorSearchEngineTestCase' => 'PhabricatorTestCase', 9115 9113 'PhabricatorSearchField' => 'Phobject', 9116 9114 'PhabricatorSearchHost' => 'Phobject', 9117 9115 'PhabricatorSearchHovercardController' => 'PhabricatorSearchBaseController',
-10
src/applications/search/engine/__tests__/PhabricatorSearchEngineTestCase.php
··· 1 - <?php 2 - 3 - final class PhabricatorSearchEngineTestCase extends PhabricatorTestCase { 4 - 5 - public function testLoadAllEngines() { 6 - $services = PhabricatorSearchService::getAllServices(); 7 - $this->assertTrue(!empty($services)); 8 - } 9 - 10 - }