Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / walkdir / test / endearly.js
diff --git a/legacy-libs/walkdir/test/endearly.js b/legacy-libs/walkdir/test/endearly.js
new file mode 100644 (file)
index 0000000..a44aedf
--- /dev/null
@@ -0,0 +1,19 @@
+var test = require('tape'),
+walk  = require('../walkdir.js');
+
+test('should be able to end walk after first path',function(t){
+
+  var paths = [];
+
+  var em = walk('../',function(path){
+    paths.push(path);
+    this.end();
+  });
+
+  em.on('end',function(){
+    t.equals(paths.length,1,'should have only found one path');
+    t.end();
+  });
+
+});
+