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

testHiddenFieldWithNoLabel() public method

Verifies that calls to field() with 'type' => 'hidden' do not produce s.
    public function testHiddenFieldWithNoLabel()
    {
        $result = $this->form->field('foo', array('type' => 'hidden'));
        $this->assertTags($result, array('div' => array(), 'input' => array('type' => 'hidden', 'name' => 'foo', 'id' => 'Foo'), '/div'));
    }
FormTest