magik-hooks
Version:
Tiny utility to manage git hooks in Node.js
15 lines (11 loc) • 328 B
JavaScript
;
var test = require('tape');
var magikHooks = require('./magik-hooks');
test('it should have a create method', function(t){
t.equal(typeof magikHooks.create, 'function');
t.end();
});
test('it should have a remove method', function(t){
t.equal(typeof magikHooks.remove, 'function');
t.end();
});