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.
15 lines
382 B
15 lines
382 B
11 years ago
|
var test = require ('tap') . test
|
||
|
var readdir = require ('../readdir.js')
|
||
|
|
||
|
test ('basic', function (t) {
|
||
|
// should not get {a,b}/{x,y}, but SHOULD get @org/ and @scope children
|
||
|
var expect = [ '@org/x', '@org/y', '@scope/x', '@scope/y', 'a', 'b' ]
|
||
|
|
||
|
readdir (__dirname + '/fixtures', function (er, kids) {
|
||
|
if (er)
|
||
|
throw er
|
||
|
t.same(kids, expect)
|
||
|
t.end()
|
||
|
})
|
||
|
})
|