/**
  * getERestHelperScopes
  * 
  * Gets the ERestHelperScopes Object
  *
  * @return (Object) ERestHelperScopes
  */
 protected function getERestHelperScopes()
 {
     $model = new Category();
     $model->attachBehavior('ERestHelperScopes', new ERestHelperScopes());
     $erhs = $model->asa('ERestHelperScopes');
     $this->assertInstanceOf('ERestHelperScopes', $erhs);
     return $erhs;
 }