Tizen 2.1 base
[platform/framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.2.0 / node_modules / grunt / node_modules / jshint / node_modules / cli / 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 })