Files
luos/workflow/engine/test/fixtures/fixtures.yml
Victor Saisa Lopez 6d9858d6d0 HOR-1738 "Change folder permissions in ProcessMaker" SOLVED
Issue:
    Change folder permissions in ProcessMaker
Cause:
    Nuevo requerimiento
Solution:
    Se cambio los permisos de los files and directories
2016-08-30 13:03:35 -04:00

29 lines
703 B
YAML

-
input: '/test'
output: true
comment: isPathAbsolute() returns true if path is absolute
-
input: '\\test'
output: true
comment: isPathAbsolute() returns true if path is absolute
-
input: 'C:\\test'
output: true
comment: isPathAbsolute() returns true if path is absolute
-
input: 'd:/test'
output: true
comment: isPathAbsolute() returns true if path is absolute
-
input: 'test'
output: false
comment: isPathAbsolute() returns false if path is relative
-
input: '../test'
output: false
comment: isPathAbsolute() returns false if path is relative
-
input: '..\\test'
output: false
comment: isPathAbsolute() returns false if path is relative