add test to search for multiple tags, which fails currently
This commit is contained in:
parent
0f0a95998e
commit
a1989cff06
1 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in a new issue