/**
  * @When I disable it
  */
 public function iDisableIt()
 {
     $this->updatePage->disable();
 }
 function it_disables_locale(UpdatePageInterface $updatePage)
 {
     $updatePage->disable()->shouldBeCalled();
     $this->iDisableIt();
 }