/**
  * Ensures that fetchAll() provides expected behavior when the schema is specified
  *
  * @return void
  */
 public function testTableFetchAllSchemaSet()
 {
     $schema = 'public';
     $config = array('db' => $this->_db, 'schema' => $schema);
     $table = new My_ZendDbTable_TableBugs($config);
     $rowset = $table->fetchAll();
     $this->assertThat($rowset, $this->isInstanceOf('Zend_Db_Table_Rowset'));
     $this->assertEquals(4, count($rowset));
 }