Initial commit
[yaffs-website] / node_modules / globule / node_modules / glob / test / zz-cleanup.js
1 // remove the fixtures
2 var tap = require("tap")
3 , rimraf = require("rimraf")
4 , path = require("path")
5
6 tap.test("cleanup fixtures", function (t) {
7   rimraf(path.resolve(__dirname, "a"), function (er) {
8     t.ifError(er, "removed")
9     t.end()
10   })
11 })