summaryrefslogtreecommitdiff
path: root/modules/search
diff options
context:
space:
mode:
authorJennifer Hodgdon <yahgrp@poplarware.com>2014-05-02 16:39:52 -0700
committerJennifer Hodgdon <yahgrp@poplarware.com>2014-05-02 16:39:52 -0700
commit1150ea82c078328b42fe8af9e8b95a2ab96ca67c (patch)
tree1bd20bea9d6711e47d35aebc6522ee2e93c83975 /modules/search
parentf4a8b00f992ca600f2b75ce41b309a582c0d5861 (diff)
downloadbrdo-1150ea82c078328b42fe8af9e8b95a2ab96ca67c.tar.gz
brdo-1150ea82c078328b42fe8af9e8b95a2ab96ca67c.tar.bz2
Issue #2169065 by MF82, dcam, nadja.jury, danmuzyka: Fix up some docs in search tests
Diffstat (limited to 'modules/search')
-rw-r--r--modules/search/search.test14
1 files changed, 13 insertions, 1 deletions
diff --git a/modules/search/search.test b/modules/search/search.test
index 09c879b19..19f4e5510 100644
--- a/modules/search/search.test
+++ b/modules/search/search.test
@@ -11,6 +11,9 @@ define('SEARCH_TYPE', '_test_');
define('SEARCH_TYPE_2', '_test2_');
define('SEARCH_TYPE_JPN', '_test3_');
+/**
+ * Indexes content and queries it.
+ */
class SearchMatchTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
@@ -307,6 +310,9 @@ class SearchPageText extends DrupalWebTestCase {
}
}
+/**
+ * Indexes content and tests the advanced search form.
+ */
class SearchAdvancedSearchForm extends DrupalWebTestCase {
protected $node;
@@ -370,6 +376,9 @@ class SearchAdvancedSearchForm extends DrupalWebTestCase {
}
}
+/**
+ * Indexes content and tests ranking factors.
+ */
class SearchRankingTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
@@ -580,6 +589,9 @@ class SearchRankingTestCase extends DrupalWebTestCase {
}
}
+/**
+ * Tests the rendering of the search block.
+ */
class SearchBlockTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
@@ -727,7 +739,7 @@ class SearchCommentTestCase extends DrupalWebTestCase {
public static function getInfo() {
return array(
'name' => 'Comment Search tests',
- 'description' => 'Verify text formats and filters used elsewhere.',
+ 'description' => 'Test integration searching comments.',
'group' => 'Search',
);
}