Author: Vitaliy Zhuk (zhuk2205@gmail.com)
Example #1
0
 /**
  * Test successfully initialize deployer
  */
 public function testSuccessfullyInitialize()
 {
     list($tmpDir, $tmpFileName, $tmpFilePath) = $this->createTemporaryFile();
     $this->template->expects($this->once())->method('initialize')->with($tmpFilePath);
     $configFilePath = $this->initializer->initialize('test', $tmpDir, $tmpFileName);
     $this->assertEquals($tmpFilePath, $configFilePath);
 }