Skip to content
Snippets Groups Projects
Commit 391c440d authored by Sergii Kovalenko's avatar Sergii Kovalenko
Browse files

MAGETWO-56989: Deployment process can't be executed on separate machine

-move deploy static command
parent ee2825d7
No related merge requests found
......@@ -5,7 +5,7 @@
*/
namespace Magento\Deploy\Test\Unit\Console\Command;
use Magento\Deploy\Console\Command\DeployStaticContentCommand;
use Magento\Setup\Console\Command\DeployStaticContentCommand;
use Symfony\Component\Console\Tester\CommandTester;
use Magento\Framework\Validator\Locale;
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
......
......@@ -156,8 +156,6 @@ class WriterTest extends \PHPUnit_Framework_TestCase
$testSetExpected = [
ConfigFilePool::APP_CONFIG => [
'foo' => 'bar',
'key' => 'value',
'baz' => [
'test' => 'value2',
]
......@@ -167,8 +165,6 @@ class WriterTest extends \PHPUnit_Framework_TestCase
$this->deploymentConfig->expects($this->once())->method('resetData');
$this->configFilePool->expects($this->once())->method('getPaths')->willReturn($configFiles);
$this->dirWrite->expects($this->any())->method('isExist')->willReturn(true);
$this->reader->expects($this->once())->method('load')
->willReturn($testSetExisting[ConfigFilePool::APP_CONFIG]);
$this->formatter
->expects($this->once())
->method('format')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment