Files
luos/tests/unit/workflow/engine/classes/PmFunctions/PmToUrlTest.php
Paula Quispe 8fbcb712e5 PMCORE-3674
2022-04-27 12:48:00 -04:00

23 lines
377 B
PHP

<?php
namespace Tests\unit\workflow\engine\classes\PmFunctions;
use Tests\TestCase;
/**
* Test the pmToUrl() function
*/
class PmToUrlTest extends TestCase
{
/**
* This tests the "pmToUrl"
* @test
*/
public function it_get_url()
{
$value = 'home';
$result = pmToUrl($value);
$this->assertEquals($result, $value);
}
}