123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?php
- /**
- * Part of the Fuel framework.
- *
- * @package Fuel
- * @version 1.5
- * @author Fuel Development Team
- * @license MIT License
- * @copyright 2010 - 2013 Fuel Development Team
- * @link http://fuelphp.com
- */
- namespace Fuel\Core;
- /**
- * Fieldset class tests
- *
- * @group Core
- * @group Fieldset
- */
- class Test_Fieldset extends TestCase
- {
- public static function setUpBeforeClass()
- {
- // set Request::$main
- $request = \Request::forge('welcome/index');
- $rp = new \ReflectionProperty($request, 'main');
- $rp->setAccessible(true);
- $rp->setValue($request, $request);
- }
- public static function tearDownAfterClass()
- {
- // reset Request::$main
- $request = \Request::forge();
- $rp = new \ReflectionProperty($request, 'main');
- $rp->setAccessible(true);
- $rp->setValue($request, false);
- }
- /**
- * Test of "for" attribute in label tag
- */
- public function test_for_in_label()
- {
- $form = Fieldset::forge(__METHOD__);
- $ops = array('male', 'female');
- $form->add('gender', '', array(
- 'options' => $ops, 'type' => 'radio', 'value' => 1
- ));
- $output = $form->build();
- $output = str_replace(array("\n", "\t"), "", $output);
- $expected = '<form action="welcome/index" accept-charset="utf-8" method="post"><table><tr><td class=""></td><td class=""><input type="radio" value="0" id="form_gender_0" name="gender" /> <label for="form_gender_0">male</label><br /><input type="radio" value="1" id="form_gender_1" name="gender" checked="checked" /> <label for="form_gender_1">female</label><br /><span></span></td></tr></table></form>';
- $this->assertEquals($expected, $output);
- }
- }
|