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

contact-list-spec.js « javascripts « spec - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd15181a4f7680c6a4afbf1be0a09ca9481808af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*   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.mostRecentCall.args[0];
        expect(option_hash.url).toEqual("/contacts/" + id);
        expect(option_hash.type).toEqual("DELETE");
        expect(option_hash.success).toBeDefined();
      });
  });
});