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.
 
 
 
 
 
 

37 lines
904 B

var tap = require("tap")
var Readable = require("stream").Readable
var inherits = require("util").inherits
var common = require("./lib/common.js")
var server = require("./lib/server.js")
var cache = require("./fixtures/underscore/cache.json")
var client = common.freshClient({
username : "othiym23",
password : "password",
email : "ogd@aoaioxxysz.net",
_auth : new Buffer("username : password").toString("base64"),
"always-auth" : true
})
function OneA() {
Readable.call(this)
this.push("A")
this.push(null)
}
inherits(OneA, Readable)
tap.test("unpublish a package", function (t) {
server.expect("PUT", "/underscore", function (req, res) {
t.equal(req.method, "PUT")
res.json(cache)
})
client.upload("http://localhost:1337/underscore", new OneA(), "daedabeefa", true, function (error) {
t.notOk(error, "no errors")
t.end()
})
})