endtoend-test-psl/tests/Psl/Env/JoinPathsTest.php

19 lines
403 B
PHP
Raw Normal View History

2020-08-18 05:51:44 +02:00
<?php
declare(strict_types=1);
namespace Psl\Tests\Env;
use PHPUnit\Framework\TestCase;
use Psl\Env;
use Psl\Str;
class JoinPathsTest extends TestCase
{
public function testJoinPaths(): void
{
self::assertSame(Str\format('/home/azjezz%s/tmp', PATH_SEPARATOR), Env\join_paths('/home/azjezz', '/tmp'));
self::assertSame('/home/azjezz', Env\join_paths('/home/azjezz'));
}
}