diff options
| author | Dhruv <dhruv.goel92@gmail.com> | 2013-07-06 20:36:41 +0530 |
|---|---|---|
| committer | Dhruv <dhruv.goel92@gmail.com> | 2013-10-05 21:15:36 +0530 |
| commit | b31bb8653b12f984957d4c62ccf280deb1e6400e (patch) | |
| tree | 8bd5c8531bbc47e1b0a5c2be8bb87d606a2ae9ab /tests/functional/search/postgres_test.php | |
| parent | 07c259f4b1036ab299c3293c3961125c19907017 (diff) | |
| download | forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.gz forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.bz2 forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.xz forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.zip | |
[ticket/11608] add search functional tests to search subfolder
PHPBB3-11608
Diffstat (limited to 'tests/functional/search/postgres_test.php')
| -rw-r--r-- | tests/functional/search/postgres_test.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/functional/search/postgres_test.php b/tests/functional/search/postgres_test.php new file mode 100644 index 0000000000..110360f28e --- /dev/null +++ b/tests/functional/search/postgres_test.php @@ -0,0 +1,24 @@ +<?php +/** + * + * @package testing + * @copyright (c) 2013 phpBB Group + * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 + * + */ + +require_once dirname(__FILE__) . '/base_test.php'; + +/** +* @group functional +*/ +class phpbb_functional_search_postgres_test extends phpbb_functional_search_base_test +{ + protected $search_backend; + + public function setUp() + { + parent::setUp(); + $this->search_backend = 'phpbb_search_fulltext_postgres'; + } +} |
