Beispiel #1
0
 /**
  * @depends getConfig
  *
  * @param \Step\Api\User $I
  */
 public function getEmptyConfig(\Step\Api\User $I)
 {
     $I->emptyMyConfigFile();
     $I->am('an app');
     $I->wantTo('get the current Gallery configuration');
     $I->expectTo('see empty features');
     $this->tryToGetAValidConfig($I);
     $I->seeResponseContainsJson(['features' => []]);
     $I->seeResponseContainsJson($this->mediaTypes);
     $I->fixMyConfigFile();
 }