summaryrefslogtreecommitdiff
path: root/spec/restful/signup.js
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2012-11-14 12:21:00 +0100
committerAzul <azul@riseup.net>2012-11-14 12:21:00 +0100
commit0bf072f0e5d26016e61fbe68a5c0fec60e13e5e3 (patch)
tree6e0ed4b49d20df7c5f5c26ea678bed6eff34ec89 /spec/restful/signup.js
parent7b73cbd591aa9ac3f46400c040ae14ec26e2d839 (diff)
removed outdated django remote and all related files
Also cleaned up the specs a bit
Diffstat (limited to 'spec/restful/signup.js')
-rw-r--r--spec/restful/signup.js32
1 files changed, 0 insertions, 32 deletions
diff --git a/spec/restful/signup.js b/spec/restful/signup.js
deleted file mode 100644
index e4d70df..0000000
--- a/spec/restful/signup.js
+++ /dev/null
@@ -1,32 +0,0 @@
-describe("Signup", function() {
-
- beforeEach(function() {
- this.srp = new SRP(jqueryRest());
- specHelper.setupFakeXHR.apply(this);
- });
-
- afterEach(function() {
- this.xhr.restore();
- });
-
- it("has a register function", function() {
- expect(typeof this.srp.register).toBe('function');
- });
-
- it("calculates the right x", function(){
- expect(this.srp.session.calcX("7686acb8").toString(16)).toBe('84d6bb567ddf584b1d8c8728289644d45dbfbb02deedd05c0f64db96740f0398');
- });
-
- it("identifies after successful registration (INTEGRATION)", function(){
- var callback = sinon.spy();
- this.srp.identify = callback;
- this.srp.session.getSalt = function() {return "4c78c3f8"};
- this.srp.register();
- this.expectRequest('users.json', "user[login]=testuser&user[password_salt]=4c78c3f8&user[password_verifier]=474c26aa42d11f20544a00f7bf9711c4b5cf7aab95ed448df82b95521b96668e7480b16efce81c861870302560ddf6604c67df54f1d04b99d5bb9d0f02c6051ada5dc9d594f0d4314e12f876cfca3dcd99fc9c98c2e6a5e04298b11061fb8549a22cde0564e91514080df79bca1c38c682214d65d590f66b3719f954b078b83c", 'POST')
- this.respondJSON({password_salt: "4c78c3f8", login: "testuser", ok: "true"});
- expect(callback).toHaveBeenCalled();
- });
-
-});
-
-