2017-04-05 21:38:15 +08:00
|
|
|
/* globals describe, beforeEach, it */
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const should = require("should");
|
|
|
|
const path = require("path");
|
|
|
|
|
2017-04-06 19:33:57 +08:00
|
|
|
const identifierUtil = require("../lib/util/identifier");
|
2017-04-05 21:38:15 +08:00
|
|
|
|
2017-04-06 19:33:57 +08:00
|
|
|
describe("util/identifier", () => {
|
|
|
|
describe("makePathsRelative", () => {
|
2017-04-05 21:38:15 +08:00
|
|
|
describe("given a context and a pathConstruct", () => {
|
|
|
|
let context, pathConstruct, expected;
|
|
|
|
beforeEach(() => {
|
|
|
|
context = "/some/dir/";
|
|
|
|
pathConstruct = "/some/dir/to/somwhere|some/other/dir!../more/dir";
|
2017-04-07 21:37:38 +08:00
|
|
|
expected = "to/somwhere|some/other/dir!../more/dir";
|
2017-04-05 21:38:15 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("computes the correct relative results for the path construct", () => {
|
|
|
|
should(identifierUtil.makePathsRelative(context, pathConstruct)).be.exactly(expected);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|