Completed
Push — master ( 493278...cf5ee9 )
by Davert
03:21
created
tests/cli/FilesystemStackCest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 {
5 5
     public function _before(CliGuy $I)
6 6
     {
7
-        $I->amInPath(codecept_data_dir().'sandbox');
7
+        $I->amInPath(codecept_data_dir() . 'sandbox');
8 8
     }
9 9
 
10 10
     public function toCreateDir(CliGuy $I)
Please login to merge, or discard this patch.
tests/cli/CleanDirCept.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
     ->run();
9 9
 $I->dontSeeFileFound('box', 'sandbox');
10 10
 $I->dontSeeFileFound('robo.txt', 'sandbox');
11
-$I->dontSeeFileFound('a.txt' , 'sandbox');
11
+$I->dontSeeFileFound('a.txt', 'sandbox');
12 12
 
13 13
 
Please login to merge, or discard this patch.
tests/cli/AssetsCept.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@
 block discarded – undo
11 11
 $initialFileSize = filesize($sampleCss);
12 12
 
13 13
 $I->taskMinify($sampleCss)
14
-  ->to('minifiedSample.css')
15
-  ->run();
14
+    ->to('minifiedSample.css')
15
+    ->run();
16 16
 
17 17
 $I->seeFileFound($outputCss);
18 18
 $minifiedFileSize = filesize($outputCss);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 $I = new CliGuy($scenario);
4 4
 
5 5
 $I->wantTo('minify a css file');
6
-$I->amInPath(codecept_data_dir().'sandbox');
6
+$I->amInPath(codecept_data_dir() . 'sandbox');
7 7
 
8 8
 $sampleCss = dirname(__DIR__) . '/_data/sample.css';
9 9
 $outputCss = 'minifiedSample.css';
Please login to merge, or discard this patch.
tests/cli/FlattenDirParentsCept.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 $I = new CliGuy($scenario);
3 3
 
4 4
 $I->wantTo('flatten dir with FlattenDir task including parents');
5
-$I->amInPath(codecept_data_dir().'sandbox');
5
+$I->amInPath(codecept_data_dir() . 'sandbox');
6 6
 $I->taskFlattenDir('some/deeply/nested/*.re')
7
-    ->includeParents(array(1,1))
7
+    ->includeParents(array(1, 1))
8 8
     ->parentDir('some')
9 9
     ->to('flattened')
10 10
     ->run();
Please login to merge, or discard this patch.
tests/unit/OutputTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use AspectMock\Test as test;
4 3
 use Robo\Robo;
5 4
 
6 5
 class RsyncTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.
tests/unit/Task/HgTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use AspectMock\Test as test;
4 3
 use Robo\Robo;
5 4
 
6 5
 class RsyncTest extends \Codeception\TestCase\Test
Please login to merge, or discard this patch.
tests/cli/CopyDirCept.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 $I = new CliGuy($scenario);
4 4
 
5 5
 $I->wantTo('minify a css file');
6
-$I->amInPath(codecept_data_dir().'sandbox');
6
+$I->amInPath(codecept_data_dir() . 'sandbox');
7 7
 
8 8
 $sampleCss = dirname(__DIR__) . '/_data/sample.css';
9 9
 $outputCss = 'minifiedSample.css';
Please login to merge, or discard this patch.
tests/cli/FlattenDirCept.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 $I = new CliGuy($scenario);
4 4
 
5 5
 $I->wantTo('minify a css file');
6
-$I->amInPath(codecept_data_dir().'sandbox');
6
+$I->amInPath(codecept_data_dir() . 'sandbox');
7 7
 
8 8
 $sampleCss = dirname(__DIR__) . '/_data/sample.css';
9 9
 $outputCss = 'minifiedSample.css';
Please login to merge, or discard this patch.
tests/cli/PackExtractCept.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 $I = new CliGuy($scenario);
4 4
 
5 5
 $I->wantTo('minify a css file');
6
-$I->amInPath(codecept_data_dir().'sandbox');
6
+$I->amInPath(codecept_data_dir() . 'sandbox');
7 7
 
8 8
 $sampleCss = dirname(__DIR__) . '/_data/sample.css';
9 9
 $outputCss = 'minifiedSample.css';
Please login to merge, or discard this patch.