test('should transform sync function to thunk', function (done) {
    var readFileSync = alwaysThunk(fs.readFileSync)
    readFileSync('./package.json', 'utf8')(function (err, res) {
      test.ifError(err)
      test.ok(res.indexOf('"license": "MIT"') !== -1)