machinepack-paths
Version:
Utilities for handling and transforming file paths.
34 lines (33 loc) • 722 B
JSON
{
"machine": "join",
"expectations": [
{
"using": {
"paths": "[\"/foo\", \"foodporn.png\"]"
},
"outcome": "success",
"returns": "/foo/foodporn.png"
},
{
"using": {
"paths": []
},
"outcome": "success",
"returns": "."
},
{
"using": {
"paths": "[\"/foo\", \"../foodporn.png\"]"
},
"outcome": "success",
"returns": "/foodporn.png"
},
{
"using": {
"paths": "[\"/Users/mikermcneil/\", \"code/sails/\", \"node_modules\", \"../\", \"../../tantric-math-problems/02.txt\"]"
},
"outcome": "success",
"returns": "/Users/mikermcneil/tantric-math-problems/02.txt"
}
]
}