closeheat
Version:
Static Website Hosting with CMS without touching your code.
44 lines (35 loc) • 1.02 kB
text/coffeescript
_ = require 'lodash'
module.exports =
class TestGit
exec: (cmd, args..., cb) ->
pretty_cmd = [
'git'
cmd
]
console.log "\nTEST: Executing '#{pretty_cmd.join(' ')}'"
if @[_.camelCase(cmd)]
else
cb(null, null)
prettyArgs: (all_args) ->
result = _.map all_args, (args) ->
if _.isArray(args)
args.join(' ')
else if _.isPlainObject(args)
_.map(args, (v, k) -> "#{k}: #{v}").join(' ')
else
args.toString()
result.join(' ')
remote: (args, cb) ->
cb null,
"""
heroku git://github.com/other-org/other-repo.git (fetch)
heroku git://github.com/other-org/other-repo.git (push)
origin git@github.com:example-org/example-repo.git (fetch)
origin git@github.com:example-org/example-repo.git (push)
"""
symbolicRef: (args, cb) ->
cb(null, 'example-branch')
revParse: (args, cb) ->
cb(null, 'example-sha123')