/**
  * @test
  */
 public function shouldNotSupportNotStatusRequest()
 {
     $action = new StatusAction();
     $request = new \stdClass();
     $this->assertFalse($action->supports($request));
 }
示例#2
0
 /**
  * @test
  */
 public function shouldNotSupportStatusRequestAndNotArrayAccessAsModel()
 {
     $action = new StatusAction();
     $request = $this->createStatusRequestStub(new \stdClass());
     $this->assertFalse($action->supports($request));
 }