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 2305ee2 commit 302ba11Copy full SHA for 302ba11
tests/SiteTest.php
@@ -269,6 +269,9 @@ public function test_symlink_creates_symlink_to_given_path()
269
$files = Mockery::mock(Filesystem::class);
270
$files->shouldReceive('ensureDirExists')->once()->with(VALET_HOME_PATH.'/Sites', user());
271
$config = Mockery::mock(Configuration::class);
272
+ $config->shouldReceive('read')
273
+ ->once()
274
+ ->andReturn(['tld' => 'other']);
275
$config->shouldReceive('prependPath')->once()->with(VALET_HOME_PATH.'/Sites');
276
$files->shouldReceive('symlinkAsUser')->once()->with('target', VALET_HOME_PATH.'/Sites/link');
277
0 commit comments