Phalcon\Test\Unit\Tag\TagTitleTest::testSetTitleSeparator PHP Method

testSetTitleSeparator() public method

Tests titleSeparator
Since: 2012-09-05
Author: Nikolaos Dimopoulos ([email protected])
    public function testSetTitleSeparator()
    {
        $this->specify("titleSeparator returns incorrect result", function () {
            Tag::resetInput();
            Tag::setTitleSeparator('-');
            expect(Tag::getTitleSeparator())->equals("-");
        });
    }