endtoend-test-psl/tests/Psl/Env/SplitPathsTest.php
2020-10-15 11:05:30 +02:00

20 lines
532 B
PHP

<?php
declare(strict_types=1);
namespace Psl\Tests\Env;
use PHPUnit\Framework\TestCase;
use Psl\Env;
use Psl\Str;
final class SplitPathsTest extends TestCase
{
public function testSplitPaths(): void
{
static::assertSame(['/home/azjezz', '/tmp'], Env\split_paths(Str\format('/home/azjezz%s/tmp', PATH_SEPARATOR)));
static::assertSame(['/home/azjezz', '/tmp'], Env\split_paths(Env\join_paths('/home/azjezz', '/tmp')));
static::assertSame(['/home/azjezz'], Env\split_paths('/home/azjezz'));
}
}