mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
256 B
11 lines
256 B
11 years ago
|
var Glob = require('../glob.js').Glob;
|
||
|
var test = require('tap').test;
|
||
|
|
||
|
test('new glob, with cb, and no options', function (t) {
|
||
|
new Glob(__filename, function(er, results) {
|
||
|
if (er) throw er;
|
||
|
t.same(results, [__filename]);
|
||
|
t.end();
|
||
|
});
|
||
|
});
|