it("does not call delegateEvents", function() {
            spyOn(Backbone.View.prototype, "delegateEvents");
            view.delegateEvents();
            expect(Backbone.View.prototype.delegateEvents).not.toHaveBeenCalled();
        });