add test to search for multiple tags, which fails currently

This commit is contained in:
Christian Weiske 2011-04-15 19:15:57 +02:00
parent 0f0a95998e
commit a1989cff06

View file

@ -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
);
}
} }
?> ?>