Example #1
0
 public function testFile()
 {
     $html = Form::file('foo', $this->testAttributes);
     $expected = '<input class="foo input-file" data-foo="bar" name="foo" type="file">';
     $this->assertEquals($expected, $html);
 }