Esempio n. 1
0
 /**
  * Tests selectStatic with displayTo and element not present
  *
  * @author Nikolaos Dimopoulos <*****@*****.**>
  * @since  2014-09-05
  */
 public function testSelectStaticOptGroupWithDisplayToElementNotPresent()
 {
     $this->specify("selectStatic with displayTo and element not present returns invalid HTML", function () {
         Tag::resetInput();
         $params = ['x_name', 'name' => 'x_other', 'class' => 'x_class', 'size' => '10'];
         $options = ["Active" => ['A1' => 'A One', 'A2' => 'A Two'], "B" => "B One"];
         $expected = '<select id="x_name" name="x_other" class="x_class" size="10">' . PHP_EOL . chr(9) . '<optgroup label="Active">' . PHP_EOL . chr(9) . '<option value="A1">A One</option>' . PHP_EOL . chr(9) . '<option value="A2">A Two</option>' . PHP_EOL . chr(9) . '</optgroup>' . PHP_EOL . chr(9) . '<option value="B">B One</option>' . PHP_EOL . '</select>';
         Tag::displayTo('x_name', 'I');
         $actual = Tag::selectStatic($params, $options);
         Tag::resetInput();
         expect($actual)->equals($expected);
     });
 }