function it_disables_country(UpdatePageInterface $countryUpdatePage)
 {
     $countryUpdatePage->disable()->shouldBeCalled();
     $this->iDisableIt();
 }
Ejemplo n.º 2
0
 /**
  * @When I disable it
  */
 public function iDisableIt()
 {
     $this->updatePage->disable();
 }
Ejemplo n.º 3
0
 /**
  * @When I disable it
  */
 public function iDisableIt()
 {
     $this->countryUpdatePage->disable();
 }