diff options
Diffstat (limited to 'tests/www')
| -rw-r--r-- | tests/www/searchTest.php | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/tests/www/searchTest.php b/tests/www/searchTest.php index cd7b2a5..1220667 100644 --- a/tests/www/searchTest.php +++ b/tests/www/searchTest.php @@ -48,6 +48,21 @@ class www_SearchTest extends TestBaseApi          );      } + +    public function testMultipleTags() +    { +        $this->markTestSkipped( +            'FIXME: SemanticScuttle currently does not search multiple tags' +        ); + +        $this->addBookmark(null, null, 0, array('foo', 'bar')); +        $res = $this->getRequest('/all/foo+bar')->send(); +        $this->assertSelectCount( +            '.xfolkentry', true, $res->getBody(), +            'No bookmark found', false +        ); +    } +  }  ?>
\ No newline at end of file | 
