Skip to content

Commit c7227d2

Browse files
committed
wip
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
1 parent 5a7065b commit c7227d2

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/Unit/FunctionsTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
use function Orchestra\DuskUpdaterApi\join_paths;
4+
5+
it('can resolve path using `join_paths()`', function () {
6+
$this->assertSame(
7+
realpath(__DIR__.'/FunctionsTest.php'),
8+
join_paths(__DIR__, 'FunctionsTest.php'),
9+
);
10+
});

0 commit comments

Comments
 (0)