summaryrefslogtreecommitdiff
path: root/tests/Unit/HelpersTest.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2019-05-31 17:09:50 +0200
committermsquare <msquare@notrademark.de>2019-06-03 21:36:58 +0200
commit236197faf82073e3b8afca49161898eb60cee76b (patch)
tree43746f677ef76ec638866077ceaaa5155f473c60 /tests/Unit/HelpersTest.php
parent25bf0d8f873f80401f27cf0723548f5b1396de85 (diff)
Upgraded external components
Diffstat (limited to 'tests/Unit/HelpersTest.php')
-rw-r--r--tests/Unit/HelpersTest.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/tests/Unit/HelpersTest.php b/tests/Unit/HelpersTest.php
index 6d182907..ad677cb3 100644
--- a/tests/Unit/HelpersTest.php
+++ b/tests/Unit/HelpersTest.php
@@ -55,7 +55,7 @@ class HelpersTest extends TestCase
}
/**
- * @covers \base_path()
+ * @covers \base_path
*/
public function testBasePath()
{
@@ -99,7 +99,7 @@ class HelpersTest extends TestCase
}
/**
- * @covers \config_path()
+ * @covers \config_path
*/
public function testConfigPath()
{
@@ -118,20 +118,6 @@ class HelpersTest extends TestCase
}
/**
- * @covers \env
- */
- public function testEnv()
- {
- putenv('envTestVar=someContent');
-
- $env = env('envTestVar');
- $this->assertEquals('someContent', $env);
-
- $env = env('someRandomEnvVarThatShouldNeverExist', 'someDefaultValue');
- $this->assertEquals('someDefaultValue', $env);
- }
-
- /**
* @covers \request
*/
public function testRequest()