/**
  * @When I enable it
  */
 public function iEnableIt()
 {
     $this->updatePage->enable();
 }
 function it_enables_locale(UpdatePageInterface $updatePage)
 {
     $updatePage->enable()->shouldBeCalled();
     $this->iEnableIt();
 }