Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | public function testItRenderCreateText($type): void |
||
31 | { |
||
32 | $render = Input::create($type, 'foo'); |
||
33 | |||
34 | $this->assertEquals(<<<'T' |
||
35 | <div class="form-group"><label for="form_foo">Foo</label><input type="text" id="form_foo" name="form[foo]" class="form-control" /></div> |
||
36 | T, $render); |
||
37 | } |
||
67 |