19 lines
694 B
JavaScript
19 lines
694 B
JavaScript
/* Copyright (c) 2010-2011, Diaspora Inc. This file is
|
|
* licensed under the Affero General Public License version 3 or later. See
|
|
* the COPYRIGHT file.
|
|
*/
|
|
|
|
describe("Contact List", function() {
|
|
describe("disconnectUser", function() {
|
|
it("does an ajax call to person delete with the passed in id", function(){
|
|
var id = '3';
|
|
spyOn($,'ajax');
|
|
List.disconnectUser(id);
|
|
expect($.ajax).toHaveBeenCalled();
|
|
var option_hash = $.ajax.calls.mostRecent().args[0];
|
|
expect(option_hash.url).toEqual("/contacts/" + id);
|
|
expect(option_hash.type).toEqual("DELETE");
|
|
expect(option_hash.success).toBeDefined();
|
|
});
|
|
});
|
|
});
|