Move files to psr-2 standard locations
@ -1 +0,0 @@
|
|||||||
.a {color: #f00;}
|
|
@ -1 +0,0 @@
|
|||||||
.b {color: #0ff;}
|
|
@ -1 +0,0 @@
|
|||||||
.c {color: #0ff;}
|
|
@ -1 +0,0 @@
|
|||||||
alert('a');
|
|
@ -1 +0,0 @@
|
|||||||
alert('b');
|
|
@ -1 +0,0 @@
|
|||||||
alert('c');
|
|
Before Width: | Height: | Size: 132 B After Width: | Height: | Size: 132 B |
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 240 B |
Before Width: | Height: | Size: 253 B After Width: | Height: | Size: 253 B |
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 331 B After Width: | Height: | Size: 331 B |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
@ -21,7 +21,10 @@ class PhpSyntaxTest extends SapphireTest {
|
|||||||
$returnCode = 0;
|
$returnCode = 0;
|
||||||
$output = array();
|
$output = array();
|
||||||
exec("which find && which grep && which php", $output, $returnCode);
|
exec("which find && which grep && which php", $output, $returnCode);
|
||||||
if($returnCode != 0) return;
|
if($returnCode != 0) {
|
||||||
|
$this->markTestSkipped("Only works on *nix based systems");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$settingTests = array('short_open_tag=Off','short_open_tag=On -d asp_tags=On');
|
$settingTests = array('short_open_tag=Off','short_open_tag=On -d asp_tags=On');
|
||||||
|
|
Can't render this file because it contains an unexpected character in line 1 and column 51.
|
Can't render this file because it contains an unexpected character in line 4 and column 45.
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 5.8 KiB |
15
tests/php/View/SSViewerTest/Model.php
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace TestNamespace;
|
||||||
|
|
||||||
|
use SilverStripe\Dev\TestOnly;
|
||||||
|
use SilverStripe\ORM\DataObject;
|
||||||
|
use SilverStripe\Control\Controller;
|
||||||
|
|
||||||
|
class SSViewerTestModel extends DataObject implements TestOnly {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
class SSViewerTestModel_Controller extends Controller implements TestOnly {
|
||||||
|
|
||||||
|
}
|
@ -1,15 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
namespace TestNamespace;
|
|
||||||
|
|
||||||
use SilverStripe\ORM\DataObject;
|
|
||||||
use SilverStripe\Control\Controller;
|
|
||||||
|
|
||||||
|
|
||||||
class SSViewerTestModel extends DataObject {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
class SSViewerTestModel_Controller extends Controller {
|
|
||||||
|
|
||||||
}
|
|