mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
967 B
37 lines
967 B
8 years ago
|
<?php
|
||
|
|
||
|
namespace Mage\Tests\Task\BuiltIn\Composer;
|
||
|
|
||
|
use Mage\Tests\Runtime\RuntimeMockup;
|
||
|
use PHPUnit_Framework_TestCase as TestCase;
|
||
|
|
||
|
class BasicComposerTaskTest extends TestCase
|
||
|
{
|
||
|
public function testBasicTask()
|
||
|
{
|
||
|
$runtime = new RuntimeMockup();
|
||
|
$runtime->setConfiguration(['environments' => ['test' => []]]);
|
||
|
$runtime->setEnvironment('test');
|
||
|
|
||
|
$task = new BasicComposerTask();
|
||
|
$task->setRuntime($runtime);
|
||
|
$this->assertEquals('[Composer] Help', $task->getDescription());
|
||
|
|
||
|
$task->execute();
|
||
|
|
||
|
$ranCommands = $runtime->getRanCommands();
|
||
|
$testCase = array(
|
||
|
0 => 'composer help',
|
||
|
);
|
||
|
|
||
|
// Check total of Executed Commands
|
||
|
$this->assertEquals(count($testCase), count($ranCommands));
|
||
|
|
||
|
// Check Generated Commands
|
||
|
foreach ($testCase as $index => $command) {
|
||
|
$this->assertEquals($command, $ranCommands[$index]);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|