Inheritance: extends Codeception\TestCase\Test
コード例 #1
0
ファイル: ParsedownTest.php プロジェクト: nikkialgar/grav
 protected function _before()
 {
     $this->grav = Fixtures::get('grav');
     $this->pages = $this->grav['pages'];
     $this->config = $this->grav['config'];
     $this->uri = $this->grav['uri'];
     $this->language = $this->grav['language'];
     $this->old_home = $this->config->get('system.home.alias');
     $this->config->set('system.home.alias', '/item1');
     $this->config->set('system.absolute_urls', false);
     $this->config->set('system.languages.supported', []);
     unset($this->grav['language']);
     $this->grav['language'] = new Language($this->grav);
     if (!self::$run) {
         /** @var UniformResourceLocator $locator */
         $locator = $this->grav['locator'];
         $locator->addPath('page', '', 'tests/fake/nested-site/user/pages', false);
         $this->pages->init();
         self::$run = true;
     }
     $defaults = ['extra' => false, 'auto_line_breaks' => false, 'auto_url_links' => false, 'escape_markup' => false, 'special_chars' => ['>' => 'gt', '<' => 'lt']];
     $page = $this->pages->dispatch('/item2/item2-2');
     $this->parsedown = new Parsedown($page, $defaults);
 }
コード例 #2
0
 protected function initDirs()
 {
     $dirs = parent::initDirs();
     $dirs[] = dirname(__FILE__) . '/data/';
     return $dirs;
 }