Add some tests to the GitFsResolver.

This commit is contained in:
André Cruz
2013-04-23 23:38:13 +01:00
parent a87969d85f
commit f46ec05a3a
5 changed files with 135 additions and 22 deletions

View File

@@ -11,7 +11,7 @@ var GitFsResolver = function (source, options) {
// Ensure absolute path
// TODO: should sources that arrive here be already absolute
// or is ok to do this here?
source = path.resolve(this._source);
source = path.resolve(source);
GitResolver.call(this, source, options);
};