diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/Bookmark2TagTest.php | 11 | 
1 files changed, 11 insertions, 0 deletions
| diff --git a/tests/Bookmark2TagTest.php b/tests/Bookmark2TagTest.php index 4d95d69..1367a0e 100644 --- a/tests/Bookmark2TagTest.php +++ b/tests/Bookmark2TagTest.php @@ -71,6 +71,17 @@ class Bookmark2TagTest extends TestBase +    public function testAttachTagsWithoutTagsAddsSystemUnfiled() +    { +        $bid = $this->addBookmark(null, null, 0, array()); +        $this->assertEquals( +            array('system:unfiled'), +            $this->b2ts->getTagsForBookmark($bid, true) +        ); +    } + + +      /**       * Test getTagsForBookmark() when the bookmark has no tags       * | 
