mirror of
https://github.com/laravel/valet.git
synced 2026-02-06 00:40:06 +01:00
16 lines
343 B
PHP
16 lines
343 B
PHP
<?php
|
|
|
|
use Valet\Drivers\BasicValetDriver;
|
|
|
|
class BasicValetDriverTest extends BaseDriverTestCase
|
|
{
|
|
public function test_it_serves_anything()
|
|
{
|
|
$driver = new BasicValetDriver();
|
|
|
|
foreach ($this->projects() as $projectDir) {
|
|
$this->assertTrue($driver->serves($projectDir, 'my-site', '/'));
|
|
}
|
|
}
|
|
}
|