File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed
tests/fr/adrienbrault/idea/symfony2plugin/tests/templating/path Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ before_script:
15
15
env :
16
16
- PHPSTORM_ENV=2017.2
17
17
- PHPSTORM_ENV=2017.2.4
18
+ - PHPSTORM_ENV=2017.3.2
18
19
- PHPSTORM_ENV=eap
19
20
20
21
matrix :
Original file line number Diff line number Diff line change 686
686
<add-to-group group-id =" NewGroup" anchor =" last" />
687
687
</group >
688
688
689
+ <!--
689
690
<action id="SymfonyWebTestCaseGenerator" class="fr.adrienbrault.idea.symfony2plugin.action.bundle.WebTestCaseGeneratorAction">
690
691
<add-to-group group-id="PhpUnitNewGroup" anchor="last"/>
691
692
</action>
693
+ -->
692
694
693
695
<action id =" Symfony2Symbols" class =" fr.adrienbrault.idea.symfony2plugin.action.SymfonySymbolSearchAction" text =" Symfony Symbol..." icon =" SymfonyIcons.Symfony" >
694
696
<add-to-group group-id =" GoToTargetEx" />
Original file line number Diff line number Diff line change 1
1
package fr .adrienbrault .idea .symfony2plugin .tests .templating .path ;
2
2
3
- import com .intellij .util .SystemIndependent ;
4
3
import fr .adrienbrault .idea .symfony2plugin .templating .path .TwigPath ;
5
4
import fr .adrienbrault .idea .symfony2plugin .tests .SymfonyTempCodeInsightFixtureTestCase ;
6
5
@@ -24,7 +23,7 @@ public void testRelativePathResolving() {
24
23
public void testAbsolutePathResolving () {
25
24
createFile ("app/views" );
26
25
27
- @ SystemIndependent String basePath = getProject ().getBasePath ();
26
+ String basePath = getProject ().getBasePath ();
28
27
TwigPath twigPath = new TwigPath (basePath + "/app" , "namespace" );
29
28
assertEquals ("app" , twigPath .getDirectory (getProject ()).getName ());
30
29
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ if [ "$PHPSTORM_ENV" == "2017.2" ]; then
5
5
ideaVersion=" 2017.2.5"
6
6
elif [ " $PHPSTORM_ENV " == " 2017.2.4" ]; then
7
7
ideaVersion=" 2017.2.5"
8
+ elif [ " $PHPSTORM_ENV " == " 2017.3.2" ]; then
9
+ ideaVersion=" 2017.3.1"
8
10
elif [ " $PHPSTORM_ENV " == " eap" ]; then
9
11
ideaVersion=" 163.5644.15"
10
12
fi
@@ -77,6 +79,16 @@ elif [ "$PHPSTORM_ENV" == "2017.2.4" ]; then
77
79
download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.2.4-twig.zip"
78
80
unzip -qo $travisCache /phpstorm-2017.2.4-twig.zip -d ./plugins
79
81
82
+ elif [ " $PHPSTORM_ENV " == " 2017.3.2" ]; then
83
+
84
+ # php
85
+ download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-php.zip"
86
+ unzip -qo $travisCache /phpstorm-2017.3.2-php.zip -d ./plugins
87
+
88
+ # twig
89
+ download " http://phpstorm.espend.de/files/proxy/phpstorm-2017.3.2-twig.zip"
90
+ unzip -qo $travisCache /phpstorm-2017.3.2-twig.zip -d ./plugins
91
+
80
92
elif [ " $PHPSTORM_ENV " == " eap" ]; then
81
93
82
94
# php
You can’t perform that action at this time.
0 commit comments