コード例 #1
0
ファイル: FeatureContext.php プロジェクト: aleph-n/opencholar
 /**
  * @Given /^I edit the entity "([^"]*)" with title "([^"]*)"$/
  */
 public function iEditTheEntityWithTitle($entity_type, $title)
 {
     $id = FeatureHelp::getEntityID($entity_type, $title);
     $purl = FeatureHelp::GetEntityVsitePurl('file', $id);
     $purl = !empty($purl) ? $purl . '/' : '';
     return array(new Step\When('I visit "' . $purl . $entity_type . '/' . $id . '/edit"'));
 }