Files
luos/workflow/engine/test/fixtures/fixtures.yml
2011-09-05 12:47:25 -04:00

29 lines
703 B
YAML
Executable File

-
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