コード例 #1
0
ファイル: FormBuilderTest.php プロジェクト: boyhagemann/form
 public function testViewCanBeClosure()
 {
     $this->events->shouldReceive('fire')->twice();
     $this->fb->view(function () {
         return 'test';
     });
     $this->assertSame('test', $this->fb->build());
 }