public function testCanInstantiate()
{
// ----------------------------------------------------------------
// perform the change
$obj = new Story();
// ----------------------------------------------------------------
// test the results
$this->assertTrue($obj instanceof Story);
}