mecano
Version:
Common functions for system deployment.
15 lines (10 loc) • 363 B
text/coffeescript
string = require "../src/misc/string"
test = require './test'
they = require 'ssh2-they'
fs = require 'ssh2-fs'
describe 'misc string', ->
it 'escapeshellarg', ->
string.escapeshellarg("try to 'parse this").should.eql "'try to \\'parse this'"
it 'hash', ->
md5 = string.hash "hello"
md5.should.eql '5d41402abc4b2a76b9719d911017c592'