--- tests/Zend/Dojo/View/Helper/FormTest.php (revision 23865) +++ tests/Zend/Dojo/View/Helper/FormTest.php (working copy) @@ -127,6 +127,12 @@ $html = $this->helper->form('foo', array('id' => 'bar')); $this->assertRegexp('/]*(id="bar")/', $html); } + + public function testShouldNotRenderClosingTagIfContentIsFalse() + { + $html = $this->helper->form('foo'); + $this->assertNotRegexp('/<\/form>/', $html); + } } // Call Zend_Dojo_View_Helper_FormTest::main() if this source file is executed directly.