예제 #1
0
파일: VCSTest.php 프로젝트: lebris/karma
 protected function setUp()
 {
     parent::setUp();
     $this->app['vcs'] = new \Karma\VCS\InMemory('~tracked~', '~ignored~');
     $this->app['sources.fileSystem.adapter'] = new InMemory(array('config/app.yml-dist' => ''));
 }
예제 #2
0
 protected function setUp()
 {
     parent::setUp();
     $this->app['sources.fileSystem.adapter'] = new InMemory(array('src/file-dist' => '<%app.foo%>'));
     $this->app['target.fileSystem.adapter'] = new InMemory();
 }
예제 #3
0
 protected function setUp()
 {
     parent::setUp();
     $this->app['sources.fileSystem.adapter'] = new InMemory(array('src/file' => ''));
 }
예제 #4
0
 protected function setUp()
 {
     parent::setUp();
     $this->app['sources.fileSystem.adapter'] = new InMemory(array('src/file' => ''));
     $this->app['profile.fileSystem.adapter'] = new InMemory(array(Application::PROFILE_FILENAME => "generator:\n  translator: none"));
 }