]> gerrit.simantics Code Review - simantics/district.git/blobdiff - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/validate.js
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / node_modules / init-package-json / node_modules / promzard / test / validate.js
diff --git a/org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/validate.js b/org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/node_modules/init-package-json/node_modules/promzard/test/validate.js
new file mode 100644 (file)
index 0000000..a120681
--- /dev/null
@@ -0,0 +1,20 @@
+
+var promzard = require('../')
+var test = require('tap').test
+
+test('validate', function (t) {
+  t.plan(2)
+  var ctx = { tmpdir : '/tmp' }
+  var file = __dirname + '/validate.input'
+  promzard(file, ctx, function (er, found) {
+    t.ok(!er)
+    var wanted = { name: 'cool' }
+    t.same(found, wanted)
+  })
+  setTimeout(function () {
+    process.stdin.emit('data', 'not cool\n')
+  }, 100)
+  setTimeout(function () {
+    process.stdin.emit('data', 'cool\n')
+  }, 200)
+})