documentation/test/lib/git/mock_repo.js
2015-10-06 20:31:50 -04:00

21 lines
458 B
JavaScript

module.exports = {
'/my': {
repository: {
path: {
'.git': {
'HEAD': 'ref: refs/heads/master',
'config': '[remote "origin"]\n' +
'url = git@github.com:foo/bar.git\n' +
'fetch = +refs/heads/*:refs/remotes/origin/*',
refs: {
heads: {
master: 'this_is_the_sha'
}
}
},
'index.js': 'module.exports = 42;'
}
}
}
};