예제 #1
0
 public function test_isUsingBulkRequest_shouldReturnTrue_IfRequestIsABulkRequest()
 {
     $request = $this->buildRequestRawData(array(array('idsite' => '1')));
     $this->assertTrue($this->requests->isUsingBulkRequest($request));
     // don't know why this one is supposed to count as bulk request!
     $this->assertTrue($this->requests->isUsingBulkRequest("{'requests'"));
 }