diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-04-15 19:15:57 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-04-15 19:15:57 +0200 |
commit | a1989cff0675642146e0ba52aac4c6b10cdd9ae5 (patch) | |
tree | 0dc93c49e9fcdb3df51ed5a559f84d5472424e06 /tests | |
parent | 0f0a95998e373420549251be86407f9ca478fc1d (diff) | |
download | semanticscuttle-a1989cff0675642146e0ba52aac4c6b10cdd9ae5.tar.gz semanticscuttle-a1989cff0675642146e0ba52aac4c6b10cdd9ae5.tar.bz2 |
add test to search for multiple tags, which fails currently
Diffstat (limited to 'tests')
-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 |