diff options
Diffstat (limited to 'tests/TagTest.php')
-rw-r--r-- | tests/TagTest.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/TagTest.php b/tests/TagTest.php index 96f3f14..bda5a29 100644 --- a/tests/TagTest.php +++ b/tests/TagTest.php @@ -87,5 +87,13 @@ class TagTest extends TestBase } + public function testNormalizeEmptyValues() + { + $tags = $this->ts->normalize( + array('foo', '', 'bar', 'baz') + ); + $this->assertEquals(array('foo', 'bar', 'baz'), $tags); + } + } ?> |