We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f8f562 commit 8444bdcCopy full SHA for 8444bdc
packages/framework/tests/Feature/Foundation/FilesystemTest.php
@@ -100,6 +100,11 @@ public function test_vendor_path_method_returns_string()
100
$this->assertIsString($this->filesystem->vendorPath());
101
}
102
103
+ public function test_vendor_path_method_returns_the_vendor_path()
104
+ {
105
+ $this->assertSame(Hyde::path('vendor/hyde/framework'), $this->filesystem->vendorPath());
106
+ }
107
+
108
public function test_vendor_path_method_returns_qualified_file_path_when_supplied_with_argument()
109
{
110
$this->assertEquals($this->filesystem->vendorPath('file.php'), $this->filesystem->vendorPath().'/file.php');
0 commit comments