test(post): initial

This commit is contained in:
Stephan Bönnemann
2015-07-16 17:30:14 +02:00
parent 431babb42e
commit ed05101a61
3 changed files with 69 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
module.exports = function (cb) {
cb(null, 'bar')
}
+6
View File
@@ -0,0 +1,6 @@
module.exports = () => ({
authenticate: () => true,
releases: {
createRelease: (release, cb) => cb(null)
}
})