aboutsummaryrefslogtreecommitdiff
path: root/tests/Tag2TagTest.php
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 20:04:16 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2009-10-25 20:04:16 +0000
commitedfefe3eeb90be3377590107a05b5e30174ff4c5 (patch)
treeae911cb2ed4ece1b7a21932ca20b9727bb2ca83d /tests/Tag2TagTest.php
parentb4c7b1ad9a80d95ae7b2d7630ae8928c5c8a8820 (diff)
downloadsemanticscuttle-edfefe3eeb90be3377590107a05b5e30174ff4c5.tar.gz
semanticscuttle-edfefe3eeb90be3377590107a05b5e30174ff4c5.tar.bz2
fix tagtest
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@422 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'tests/Tag2TagTest.php')
-rw-r--r--tests/Tag2TagTest.php17
1 files changed, 9 insertions, 8 deletions
diff --git a/tests/Tag2TagTest.php b/tests/Tag2TagTest.php
index 3305101..3d86cb0 100644
--- a/tests/Tag2TagTest.php
+++ b/tests/Tag2TagTest.php
@@ -265,9 +265,9 @@ class Tag2TagTest extends TestBase
public function testAddLinkedTagsThroughBookmarking()
{
- $bs = $this->bs;
+ $bs = $this->bs;
$tags = array('a>b', 'b>c', 'a>d>e', 'a>a', 'a', 'r=s', 's=t=u');
- $uid = $this->addUser();
+ $uid = $this->addUser();
$bs->addBookmark(
"http://google.com", "title", "description", 'note',
0, $tags, null, false, false,
@@ -286,15 +286,16 @@ class Tag2TagTest extends TestBase
$this->assertContains('s', $savedTags);
$tts = $this->tts;
- $linkedTags = $tts->getLinkedTags('a', '>', 1);
- $this->assertEquals(2, sizeof($linkedTags));
+ $linkedTags = $tts->getLinkedTags('a', '>', $uid);
+ $this->assertEquals(2, count($linkedTags));
$this->assertSame('b', $linkedTags[0]['tag']);
$this->assertSame('d', $linkedTags[1]['tag']);
- $linkedTags = $tts->getLinkedTags('b', '>', 1);
- $this->assertEquals(1, sizeof($linkedTags));
+
+ $linkedTags = $tts->getLinkedTags('b', '>', $uid);
+ $this->assertEquals(1, count($linkedTags));
$this->assertSame('c', $linkedTags[0]['tag']);
- $this->assertTrue($tts->existsLinkedTags('d', 'e', '>', 1));
- $this->assertFalse($tts->existsLinkedTags('e', 'd', '>', 1));
+ $this->assertTrue($tts->existsLinkedTags('d', 'e', '>', $uid));
+ $this->assertFalse($tts->existsLinkedTags('e', 'd', '>', $uid));
}
public function testSearchThroughLinkedTags()