Example #1
0
 /**
  * @test
  * @author Christopher Hlubek <*****@*****.**>
  */
 public function listDocumentsWithParameters()
 {
     $this->client->createDocument(array('name' => 'Foo'), 'abc');
     $response = $this->client->listDocuments(array('include_docs' => TRUE));
     $this->assertEquals(1, count($response->rows));
 }