Comparing version 0.3.0 to 0.3.1
@@ -183,3 +183,3 @@ /* | ||
f = [], | ||
filtered = []; | ||
filtered = files; | ||
@@ -186,0 +186,0 @@ if (options.filter) { |
@@ -5,3 +5,3 @@ { | ||
"author": "Dav Glass <davglass@gmail.com>", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"dependencies": { | ||
@@ -8,0 +8,0 @@ "graceful-fs": "~1.2.0", |
@@ -107,2 +107,6 @@ var vows = require('vows'), | ||
}, | ||
'returns files array with confirm': function(topic) { | ||
assert.isArray(topic.status); | ||
assert.ok(topic.status.length > 0); | ||
}, | ||
'and has ./out/2': function(topic) { | ||
@@ -235,2 +239,6 @@ var stat = fs.statSync(this.outDir); | ||
}, | ||
'should return files array': function(topic) { | ||
assert.isArray(topic.status); | ||
assert.ok(topic.status.length > 0); | ||
}, | ||
'has ./out/0': function(topic) { | ||
@@ -237,0 +245,0 @@ var stat = fs.statSync(this.outDir); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
25985
594