add README

This commit is contained in:
David Dias
2015-09-19 16:46:52 +01:00
parent 897e72ca14
commit f15b452d34
4 changed files with 97 additions and 2 deletions

8
tests/base-test.js Normal file
View File

@ -0,0 +1,8 @@
module.exports.all = function (test, common) {
test('a test', function (t) {
common.setup(test, function (err, pr) {
t.plan(1)
t.ifError(err)
})
})
}