Initial commit

This commit is contained in:
Shun Sato
2016-05-31 02:44:50 +09:00
committed by satoshun00
commit fdd354f25d
12 changed files with 209 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
const assert = require('assert');
const binCheck = require('bin-check');
const hugoBin = require('../lib');
describe('hugo-bin', () => {
it('should return path to binary and work', () => {
return binCheck(hugoBin, ['version']).then(works => {
assert(works);
});
});
});