/**
  * Want to make sure that our schema
  *
  */
 function testFindSchemaReturnsTheExpectedResult()
 {
     $expected = "CREATE TABLE IF NOT EXISTS `betting_index`.`event`";
     $this->_callDynamicDBStub();
     $actual = $this->_dynamicDBStub->findSchema('event');
     $this->assertContains($expected, $actual);
 }