lithium\tests\cases\template\helper\FormTest::testLabelGenerationWithNoEscape PHP Method

testLabelGenerationWithNoEscape() public method

    public function testLabelGenerationWithNoEscape()
    {
        $result = $this->form->label('next', 'Enter the next value >>', array('escape' => false));
        $this->assertTags($result, array('label' => array('for' => 'next'), 'Enter the next value >>', '/label'));
    }
FormTest