Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/npm-registry-client/test/tag.js')
-rw-r--r--node_modules/npm-registry-client/test/tag.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/node_modules/npm-registry-client/test/tag.js b/node_modules/npm-registry-client/test/tag.js
new file mode 100644
index 000000000..b8b8e1927
--- /dev/null
+++ b/node_modules/npm-registry-client/test/tag.js
@@ -0,0 +1,39 @@
+var tap = require("tap")
+
+var server = require("./lib/server.js")
+var common = require("./lib/common.js")
+var client = common.freshClient({
+ username : "username",
+ password : "password",
+ email : "ogd@aoaioxxysz.net",
+ _auth : new Buffer("username : password").toString("base64"),
+ "always-auth" : true
+})
+
+tap.test("tag a package", function (t) {
+ server.expect("PUT", "/underscore/not-lodash", function (req, res) {
+ t.equal(req.method, "PUT")
+
+ var b = ""
+ req.setEncoding("utf8")
+ req.on("data", function (d) {
+ b += d
+ })
+
+ req.on("end", function () {
+ var updated = JSON.parse(b)
+
+ t.deepEqual(updated, {"1.3.2":{}})
+
+ res.statusCode = 201
+ res.json({tagged:true})
+ })
+ })
+
+ client.tag("http://localhost:1337/underscore", {"1.3.2":{}}, "not-lodash", function (error, data) {
+ t.notOk(error, "no errors")
+ t.ok(data.tagged, "was tagged")
+
+ t.end()
+ })
+})